mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Always include "wrc.h" before including "ctype.h".
wrc.h includes wrctypes.h, which includes windef.h, which includes winnt.h. And winnt.h contains our wchar_t check, which has to be done before including ctype.h to enable building on Mac OS X hosts. svn path=/trunk/; revision=28413
This commit is contained in:
parent
f4d00d9532
commit
5f5941543f
9 changed files with 9 additions and 9 deletions
|
@ -18,11 +18,11 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include "wrc.h"
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "wrc.h"
|
||||
#include "dumpres.h"
|
||||
|
||||
/*
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include "wrc.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -34,7 +35,6 @@
|
|||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "wrc.h"
|
||||
#include "genres.h"
|
||||
#include "utils.h"
|
||||
#include "windef.h"
|
||||
|
|
|
@ -720,6 +720,7 @@ char *yytext;
|
|||
|
||||
/*#define LEX_DEBUG*/
|
||||
|
||||
#include "wrc.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -727,7 +728,6 @@ char *yytext;
|
|||
#include <assert.h>
|
||||
|
||||
#include "wine/unicode.h"
|
||||
#include "wrc.h"
|
||||
#include "utils.h"
|
||||
#include "parser.h"
|
||||
#include "newstruc.h"
|
||||
|
|
|
@ -21,13 +21,13 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include "wrc.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "wrc.h"
|
||||
#include "newstruc.h"
|
||||
#include "utils.h"
|
||||
#include "parser.h"
|
||||
|
|
|
@ -98,6 +98,7 @@ cident [a-zA-Z_][0-9a-zA-Z_]*
|
|||
|
||||
/*#define LEX_DEBUG*/
|
||||
|
||||
#include "wrc.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -105,7 +106,6 @@ cident [a-zA-Z_][0-9a-zA-Z_]*
|
|||
#include <assert.h>
|
||||
|
||||
#include "wine/unicode.h"
|
||||
#include "wrc.h"
|
||||
#include "utils.h"
|
||||
#include "parser.h"
|
||||
#include "newstruc.h"
|
||||
|
|
|
@ -352,6 +352,7 @@
|
|||
#include "config.h"
|
||||
#include "wine/port.h"
|
||||
|
||||
#include "wrc.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
|
@ -362,7 +363,6 @@
|
|||
#include <alloca.h>
|
||||
#endif
|
||||
|
||||
#include "wrc.h"
|
||||
#include "utils.h"
|
||||
#include "newstruc.h"
|
||||
#include "dumpres.h"
|
||||
|
|
|
@ -123,6 +123,7 @@
|
|||
#include "config.h"
|
||||
#include "wine/port.h"
|
||||
|
||||
#include "wrc.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
|
@ -133,7 +134,6 @@
|
|||
#include <alloca.h>
|
||||
#endif
|
||||
|
||||
#include "wrc.h"
|
||||
#include "utils.h"
|
||||
#include "newstruc.h"
|
||||
#include "dumpres.h"
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include "wrc.h"
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -29,7 +30,6 @@
|
|||
#include <ctype.h>
|
||||
|
||||
#include "wine/unicode.h"
|
||||
#include "wrc.h"
|
||||
#include "utils.h"
|
||||
#include "parser.h"
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include "wrc.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
|
@ -34,7 +35,6 @@
|
|||
# include <getopt.h>
|
||||
#endif
|
||||
|
||||
#include "wrc.h"
|
||||
#include "utils.h"
|
||||
#include "readres.h"
|
||||
#include "dumpres.h"
|
||||
|
|
Loading…
Reference in a new issue