diff options
author | Mattias Andrée <maandree@kth.se> | 2019-04-12 21:43:02 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2019-04-12 21:43:02 +0200 |
commit | 525f87b97119978fe984bbbf47e9f3f875144d61 (patch) | |
tree | 2e26e3291894891b157840557b1ae687d3896c99 /config.mk | |
parent | Add README (diff) | |
download | liberror-backtrace-525f87b97119978fe984bbbf47e9f3f875144d61.tar.gz liberror-backtrace-525f87b97119978fe984bbbf47e9f3f875144d61.tar.bz2 liberror-backtrace-525f87b97119978fe984bbbf47e9f3f875144d61.tar.xz |
Use C99 rather than C11
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,5 +2,5 @@ PREFIX = /usr MANPREFIX = $(PREFIX)/share/man CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -CFLAGS = -std=c11 -Wall -pedantic +CFLAGS = -std=c99 -Wall -pedantic LDFLAGS = -s -lunwind -ldw |