diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/tests2/46_grep.c | 1 | ||||
| -rw-r--r-- | tests/tests2/64_macro_nesting.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/tests2/46_grep.c b/tests/tests2/46_grep.c index 3123bc3..049dfb1 100644 --- a/tests/tests2/46_grep.c +++ b/tests/tests2/46_grep.c @@ -16,6 +16,7 @@ */ #include <stdio.h> #include <stdlib.h> +#include <ctype.h> // tolower() /* * grep diff --git a/tests/tests2/64_macro_nesting.c b/tests/tests2/64_macro_nesting.c index 44b582f..676e5d3 100644 --- a/tests/tests2/64_macro_nesting.c +++ b/tests/tests2/64_macro_nesting.c @@ -1,3 +1,5 @@ +#include <stdio.h> // printf() + #define CAT2(a,b) a##b #define CAT(a,b) CAT2(a,b) #define AB(x) CAT(x,y) |
