]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/doprnt.c: Do not include stdlib.h, config.h does it.
authorDan Nicolaescu <dann@ics.uci.edu>
Tue, 21 Sep 2010 11:03:34 +0000 (14:03 +0300)
committerDan Nicolaescu <dann@ics.uci.edu>
Tue, 21 Sep 2010 11:03:34 +0000 (14:03 +0300)
Move #include before macro definition.

src/ChangeLog
src/doprnt.c

index a438304b93f9a49872a96041dad0c129c90ccc0e..f44add45de084cf4d28ac1bfb99bf63f10766546 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * doprnt.c: Do not include stdlib.h, config.h does it.
+       Move #include before macro definition.
+
 2010-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * Makefile.in (temacs): Link using $(CC) not $(LD).
index 1b45b21e36b24ffea88a2383395a685001d6070b..053fa183e6ba552601144eaea1364004bbb7f341 100644 (file)
@@ -33,21 +33,17 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <unistd.h>
 #endif
 
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-
 #include "lisp.h"
 
-#ifndef DBL_MAX_10_EXP
-#define DBL_MAX_10_EXP 308 /* IEEE double */
-#endif
-
 /* Since we use the macro CHAR_HEAD_P, we have to include this, but
    don't have to include others because CHAR_HEAD_P does not contains
    another macro.  */
 #include "character.h"
 
+#ifndef DBL_MAX_10_EXP
+#define DBL_MAX_10_EXP 308 /* IEEE double */
+#endif
+
 /* Generate output from a format-spec FORMAT,
    terminated at position FORMAT_END.
    Output goes in BUFFER, which has room for BUFSIZE chars.