summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2024-10-29 17:19:47 -0400
committerAndrew Opalach <andrew@akon.city> 2024-10-29 17:19:47 -0400
commita8bd86763e3db5c4320bfaf6684a803026213968 (patch)
tree7de30ae5b8d9dff44ae262f4ccfd6d6af2099bd0 /tests
parent736f15908cf34a851140094897a13ff12d55fd0c (diff)
downloadlibalabaster-a8bd86763e3db5c4320bfaf6684a803026213968.tar.gz
libalabaster-a8bd86763e3db5c4320bfaf6684a803026213968.tar.bz2
libalabaster-a8bd86763e3db5c4320bfaf6684a803026213968.zip
all: Undo previous #ifdef style change
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'tests')
-rw-r--r--tests/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/main.c b/tests/main.c
index 2c13ce9..5964a04 100644
--- a/tests/main.c
+++ b/tests/main.c
@@ -3,7 +3,7 @@
#include "lib.h"
#include "array.h"
-#if defined AL_HAVE_GNU_EXTENSIONS
+#ifdef AL_HAVE_GNU_EXTENSIONS
#include "array_typed.h"
#endif
#include "str.h"
@@ -15,7 +15,7 @@ s32 main(void)
if (!lib_tests_run()) goto fail;
if (!array_tests_run()) goto fail;
-#if defined AL_HAVE_GNU_EXTENSIONS
+#ifdef AL_HAVE_GNU_EXTENSIONS
if (!array_typed_tests_run()) goto fail;
#endif
if (!str_tests_run()) goto fail;