diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | parser.h | 1 | ||||
-rw-r--r-- | regex.c | 1 | ||||
-rw-r--r-- | regex.h | 2 |
4 files changed, 11 insertions, 3 deletions
@@ -1,5 +1,15 @@ 2011-10-30 Kaz Kylheku <kaz@kylheku.com> + We don't include headers in headers in this project. + + * parser.h: Do not include <stdio.h> + + * regex.c: Include <limits.h> + + * regex.h: Do not include <limits.h> + +2011-10-30 Kaz Kylheku <kaz@kylheku.com> + Bug #34691 Changing the parameter passing convention for vertical directives. @@ -24,7 +24,6 @@ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -#include <stdio.h> extern cnum lineno; extern int errors; extern val yyin_stream; @@ -32,6 +32,7 @@ #include <dirent.h> #include <setjmp.h> #include <dirent.h> +#include <limits.h> #include "config.h" #include "lib.h" #include "unwind.h" @@ -24,8 +24,6 @@ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -#include <limits.h> - val regex_compile(val regex_sexp); val regexp(val); val search_regex(val haystack, val needle_regex, val start_num, val from_end); |