Skip to content

Commit 4e20d86

Browse files
committed
chore(test): compile with std=c89
1 parent fa918d1 commit 4e20d86

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CC ?= gcc
33

44
EXES := test fuzz
55

6-
CFLAGS += -Wall -Wextra -Wpedantic -g -I$(TOP)
6+
CFLAGS += -Wall -Wextra -Wpedantic -g -I$(TOP) -std=c89
77

88
all: $(EXES)
99

test/test.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#include <assert.h>
44
#include <stddef.h>
55

6-
#define JSONB_DEBUG
76
#include "json-build.h"
87

98
#include "greatest.h"

0 commit comments

Comments
 (0)