aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-08-18 13:14:37 +0000
committerDave Love1999-08-18 13:14:37 +0000
commit48236137f4496c3103fdbaa6aba3fa64ca62101c (patch)
treef1b16b2b2d1dab71bfde9dd99e8292d3eafb74e7
parentc4a10daf1178fa5146f1024add12a6fb6e920278 (diff)
downloademacs-48236137f4496c3103fdbaa6aba3fa64ca62101c.tar.gz
emacs-48236137f4496c3103fdbaa6aba3fa64ca62101c.zip
Use stdlib.h, unistd.h.
-rw-r--r--src/doprnt.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/doprnt.c b/src/doprnt.c
index 9afdd5ae856..2e8f498ddcf 100644
--- a/src/doprnt.c
+++ b/src/doprnt.c
@@ -29,6 +29,14 @@ Boston, MA 02111-1307, USA. */
29#include <float.h> 29#include <float.h>
30#endif 30#endif
31 31
32#ifdef HAVE_UNISTD_H
33#include <unistd.h>
34#endif
35
36#ifdef HAVE_STDLIB_H
37#include <stdlib.h>
38#endif
39
32#include "lisp.h" 40#include "lisp.h"
33 41
34#ifndef DBL_MAX_10_EXP 42#ifndef DBL_MAX_10_EXP