| OLD | NEW |
| 1 diff --git a/Makefile.in b/Makefile.in |
| 2 --- a/Makefile.in |
| 3 +++ b/Makefile.in |
| 4 @@ -472,7 +472,6 @@ SUBDIRS = \ |
| 5 awklib \ |
| 6 doc \ |
| 7 po \ |
| 8 - extension \ |
| 9 test |
| 10 |
| 11 include_HEADERS = gawkapi.h |
| 1 diff --git a/dfa.c b/dfa.c | 12 diff --git a/dfa.c b/dfa.c |
| 2 --- a/dfa.c | 13 --- a/dfa.c |
| 3 +++ b/dfa.c | 14 +++ b/dfa.c |
| 4 @@ -25,6 +25,7 @@ | 15 @@ -25,6 +25,7 @@ |
| 5 #include <assert.h> | 16 #include <assert.h> |
| 6 #include <ctype.h> | 17 #include <ctype.h> |
| 7 #include <stdio.h> | 18 #include <stdio.h> |
| 8 +#include <stddef.h> | 19 +#include <stddef.h> |
| 9 | 20 |
| 10 #ifndef VMS | 21 #ifndef VMS |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 + int rtn = ki_fcntl(fd, cmd, ap); | 89 + int rtn = ki_fcntl(fd, cmd, ap); |
| 79 + va_end(ap); | 90 + va_end(ap); |
| 80 + return rtn; | 91 + return rtn; |
| 81 +} | 92 +} |
| 82 +#define fcntl nacl_fcntl | 93 +#define fcntl nacl_fcntl |
| 83 +#endif | 94 +#endif |
| 84 + | 95 + |
| 85 char quote = '\''; | 96 char quote = '\''; |
| 86 char *defpath = DEFPATH; | 97 char *defpath = DEFPATH; |
| 87 char *deflibpath = DEFLIBPATH; | 98 char *deflibpath = DEFLIBPATH; |
| OLD | NEW |