diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/main.c b/tests/main.c index 622e969..2d50d72 100644 --- a/tests/main.c +++ b/tests/main.c @@ -1,7 +1,7 @@ #include <al/lib.h> #include "array.h" -#ifdef HAVE_GNU_EXTENSIONS +#ifdef AL_HAVE_GNU_EXTENSIONS #include "array_typed.h" #endif #include "str.h" @@ -10,7 +10,7 @@ s32 main(void) { if (!array_tests_run()) goto fail; -#ifdef HAVE_GNU_EXTENSIONS +#ifdef AL_HAVE_GNU_EXTENSIONS if (!array_typed_tests_run()) goto fail; #endif if (!str_tests_run()) goto fail; |