Skip to content

Commit c581d9b

Browse files
author
oopo
committed
Using -std=gnu99 instead of -std=c99 fixes a warning message.
1 parent b64675d commit c581d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

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

6-
CFLAGS = -Wall -pedantic -std=c99 -O3 -I/usr/include -I/usr/local/include
6+
CFLAGS = -std=gnu99 -Wall -pedantic -I/usr/include -I/usr/local/include
77

88
ifeq "x$(MSYSTEM)" "x"
99
LIBS = -lpthread

0 commit comments

Comments
 (0)