pike.git
/
src
/
lex.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/lex.c:20:
#include "operators.h" #include "opcodes.h" #include "builtin_efuns.h" #include "macros.h" #include <sys/param.h> #include <ctype.h> #include <math.h> #include <fcntl.h> #include <errno.h>
-
#
ifdef
HAVE_TIME_H
-
#include <time.h>
+
+
#
if
TIME_WITH_SYS_TIME
+
# include <sys/time.h>
+
# include <time.h>
+
#else
+
# if
HAVE_
SYS_
TIME_H
+
#
include <
sys/
time.h>
+
# else
+
# if HAVE_TIME_H
+
# include <time.h>
+
# endif
+
# endif
#endif #define LEXDEBUG 0 #define EXPANDMAX 50000 struct lpc_string *current_file; INT32 current_line; INT32 old_line; INT32 total_lines;