diff options
author | Mattias Andrée <maandree@kth.se> | 2022-01-05 23:42:11 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-01-05 23:42:11 +0100 |
commit | 4ec29d6f16c39d289b05a8ee902a7bf3c96a6733 (patch) | |
tree | e303b51ebcf8b8dee4692483aa15b50b8b7561fa | |
parent | Add todos for comments (diff) | |
download | makel-4ec29d6f16c39d289b05a8ee902a7bf3c96a6733.tar.gz makel-4ec29d6f16c39d289b05a8ee902a7bf3c96a6733.tar.bz2 makel-4ec29d6f16c39d289b05a8ee902a7bf3c96a6733.tar.xz |
Use c99 instead of nonportable cc -std=c99
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,8 @@ PREFIX = /usr MANPREFIX = $(PREFIX)/share/man -CC = cc +CC = c99 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE -CFLAGS = -std=c99 -Wall -g +CFLAGS = -Wall -g LDFLAGS = -lgrapheme |