diff options
Diffstat (limited to 'parse')
-rw-r--r-- | parse/bitset.c | 1 | ||||
-rw-r--r-- | parse/dump.c | 1 | ||||
-rw-r--r-- | parse/gram.y | 1 | ||||
-rw-r--r-- | parse/htab.c | 1 | ||||
-rw-r--r-- | parse/infer.c | 1 | ||||
-rw-r--r-- | parse/names.c | 1 | ||||
-rw-r--r-- | parse/specialize.c | 1 | ||||
-rw-r--r-- | parse/tok.c | 1 | ||||
-rw-r--r-- | parse/type.c | 1 | ||||
-rw-r--r-- | parse/use.c | 1 |
10 files changed, 10 insertions, 0 deletions
diff --git a/parse/bitset.c b/parse/bitset.c index 2df1b20..7eea1d3 100644 --- a/parse/bitset.c +++ b/parse/bitset.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <assert.h> #include <limits.h> diff --git a/parse/dump.c b/parse/dump.c index 97299f5..88d5e57 100644 --- a/parse/dump.c +++ b/parse/dump.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <ctype.h> #include <string.h> diff --git a/parse/gram.y b/parse/gram.y index 6b0ca62..bc55053 100644 --- a/parse/gram.y +++ b/parse/gram.y @@ -4,6 +4,7 @@ #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <ctype.h> #include <string.h> diff --git a/parse/htab.c b/parse/htab.c index 341e2bb..529f809 100644 --- a/parse/htab.c +++ b/parse/htab.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <assert.h> #include <limits.h> diff --git a/parse/infer.c b/parse/infer.c index d447b76..900fb27 100644 --- a/parse/infer.c +++ b/parse/infer.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <inttypes.h> #include <ctype.h> diff --git a/parse/names.c b/parse/names.c index 3a0009d..5ca71e8 100644 --- a/parse/names.c +++ b/parse/names.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <ctype.h> #include <string.h> diff --git a/parse/specialize.c b/parse/specialize.c index 5b1c340..aec08ab 100644 --- a/parse/specialize.c +++ b/parse/specialize.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <ctype.h> #include <string.h> diff --git a/parse/tok.c b/parse/tok.c index acdf962..c826907 100644 --- a/parse/tok.c +++ b/parse/tok.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <ctype.h> #include <string.h> diff --git a/parse/type.c b/parse/type.c index ec282e6..9fccb07 100644 --- a/parse/type.c +++ b/parse/type.c @@ -1,6 +1,7 @@ #include <assert.h> #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <ctype.h> #include <string.h> diff --git a/parse/use.c b/parse/use.c index b58fb2a..d403602 100644 --- a/parse/use.c +++ b/parse/use.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <stdarg.h> #include <inttypes.h> #include <ctype.h> #include <string.h> |