diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-12-24 17:48:43 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-12-24 17:48:43 +0100 |
commit | 93687ac8dedab54af1973bdbe4929b4556023c72 (patch) | |
tree | 73eb41167803b2ac09d9f7b05877d76dc8f06b03 | |
parent | f6b7a1fb011a3dae5de7eefd3b7c3d41e6a0957c (diff) |
Define _GNU_SOURCE
-rw-r--r-- | Makefiles/c.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefiles/c.mk b/Makefiles/c.mk index e890ad0..279f61b 100644 --- a/Makefiles/c.mk +++ b/Makefiles/c.mk @@ -4,7 +4,7 @@ CC = cc CFLAGS = \ -Wall -Wextra -Wpedantic -Werror \ -march=native -mtune=native -O3 -flto \ - -pipe + -pipe -D_GNU_SOURCE ALL = ${CC} ${CFLAGS} ${CPPFLAGS} ${LDLIBS} @@ -18,4 +18,4 @@ all: if [ -f puzzle-2.c ]; then ${ALL} -o puzzle-2 puzzle-2.c; fi clean: - rm -f puzzle-[12]
\ No newline at end of file + rm -f puzzle-[12] |