diff options
| author | Watson Wheeler <git@tazy.dev> | 2026-06-28 20:11:08 +1000 |
|---|---|---|
| committer | Watson Wheeler <git@tazy.dev> | 2026-06-28 20:11:08 +1000 |
| commit | 14928a180689981c9b9de4d1ad373bf9e2694e63 (patch) | |
| tree | 644b104e77874cc916018f7e7549e884e18a0790 | |
| parent | 3c99653a32032cc0bfd5ad97d66a9bcb90bb89f3 (diff) | |
makefile: change C standard from c11 to c99
Signed-off-by: Watson Wheeler <git@tazy.dev>
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ AR ?= ar OUTDIR = build LIB = libtinyff.a -ALL_CFLAGS = -Wall -Wextra -Werror -std=c11 -Iinclude +ALL_CFLAGS = -Wall -Wextra -Werror -std=c99 -Iinclude DEBUG_FLAGS = -g -O0 -fno-omit-frame-pointer RELEASE_FLAGS = -O3 -march=native -flto |
