diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-05-11 09:53:10 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-06-12 12:22:17 -0400 |
commit | d001ab384ae9b694a833a5d6140106970f31ceb1 (patch) | |
tree | 4bf47cfc7987281e51f9e70d1c44df7c1c825bfc /Makefile | |
parent | 02a21219571332850c7b2fa129e88fa14dbb462c (diff) | |
download | bfs-d001ab384ae9b694a833a5d6140106970f31ceb1.tar.xz |
build: Update to C17
This lets us avoid ATOMIC_VAR_INIT().
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ LOCAL_CPPFLAGS := \ -D_TIME_BITS=64 \ -DBFS_VERSION=\"$(VERSION)\" -LOCAL_CFLAGS := -std=c11 +LOCAL_CFLAGS := -std=c17 LOCAL_LDFLAGS := LOCAL_LDLIBS := |