diff options
| author | Watson Wheeler <git@tazy.dev> | 2026-06-28 20:11:08 +1000 |
|---|---|---|
| committer | Watson Wheeler <git@tazy.dev> | 2026-07-02 19:39:07 +1000 |
| commit | f65b49d05c1fe1ef1a31616cb171a52579836d2d (patch) | |
| tree | 560b7d3aa0b7e6853e99e8419e5d1f9eda94bbb4 | |
| parent | ecaefbcfac53ed72fa1e7fb2e3a426722a3d2a0e (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 |
