diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-03-24 16:13:41 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-03-25 13:56:12 -0400 |
commit | 339be35aeec3492b895c7779ad4cc8562162dbee (patch) | |
tree | 79808c0b9f5b2c0ee9943c33385bc380587c7847 /Makefile | |
parent | b1a7f7ae253145826acda673c65fbc9e3d8c86d0 (diff) | |
download | bfs-339be35aeec3492b895c7779ad4cc8562162dbee.tar.xz |
Update from C99 to C11
This is necessary for standard anonymous structs/unions.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ LOCAL_CPPFLAGS := \ -D_GNU_SOURCE \ -DBFS_VERSION=\"$(VERSION)\" -LOCAL_CFLAGS := -std=c99 +LOCAL_CFLAGS := -std=c11 LOCAL_LDFLAGS := LOCAL_LDLIBS := |