1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

Include config.h before stdio.h.

This commit is contained in:
Geoff Voelker 1995-06-10 21:45:43 +00:00
parent 515f7b3297
commit 6816efced2
3 changed files with 5 additions and 6 deletions

View File

@ -56,6 +56,7 @@ nt_ctime (const time_t *t)
return (str ? str : "Sun Jan 01 00:00:00 1970");
}
#include <config.h>
#include <windows.h>
#include <stdlib.h>
#include <stdio.h>
@ -63,7 +64,6 @@ nt_ctime (const time_t *t)
#include <fcntl.h>
#include <ctype.h>
#include "config.h"
#define getwd _getwd
#include "lisp.h"
#undef getwd

View File

@ -22,11 +22,10 @@
*/
#include <config.h>
#include <stdlib.h>
#include <stdio.h>
#include "config.h"
#include <windows.h>
#include "lisp.h"

View File

@ -21,14 +21,14 @@
Adapted from alarm.c by Tim Fleehart
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <io.h>
#include <signal.h>
#include "config.h"
#include <windows.h>
#include "lisp.h"