diff options
author | 2022-12-30 16:14:07 +0100 | |
---|---|---|
committer | 2022-12-30 16:14:07 +0100 | |
commit | 77a6f6099f3601055f75ff2200d6a6ca071ff30b (patch) | |
tree | 8e05ca979a20d79c64281f0f50794247cb4830f4 | |
parent | 2ce7f85a91a5fa98d78d4126124d207b6ed250c8 (diff) | |
download | qureje-77a6f6099f3601055f75ff2200d6a6ca071ff30b.tar.gz qureje-77a6f6099f3601055f75ff2200d6a6ca071ff30b.zip |
Change the C standard from C89 to C11
I'm tired to see that list of warning coming from GTK library.
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ CC = cc LINKER = ${CC} WARNS = -Wall -pedantic -Wextra -STD = -std=c89 -ansi +STD = -std=c11 CFLAGS != pkg-config --cflags ${GTK} CFLAGS += ${DIRECTIVES} ${WARNS} ${STD} |