]> git.eshelyaron.com Git - emacs.git/commitdiff
Use stdlib.h, unistd.h.
authorDave Love <fx@gnu.org>
Wed, 18 Aug 1999 13:14:37 +0000 (13:14 +0000)
committerDave Love <fx@gnu.org>
Wed, 18 Aug 1999 13:14:37 +0000 (13:14 +0000)
src/doprnt.c

index 9afdd5ae8561bd98a123c8827b8d9633ac3cd1d7..2e8f498ddcf53d6491b58aa5b20ad3b87bb8b8da 100644 (file)
@@ -29,6 +29,14 @@ Boston, MA 02111-1307, USA.  */
 #include <float.h>
 #endif
 
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
 #include "lisp.h"
 
 #ifndef DBL_MAX_10_EXP