diff options
author | EuAndreh <eu@euandre.org> | 2024-06-16 10:01:31 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-06-16 10:01:36 -0300 |
commit | 2e9b5d2747c48bf301df7ade8e059098760038a1 (patch) | |
tree | 702107a3f47d3ae885fa9ebd3a82c77d841c1c44 /etc/sh | |
parent | etc/sh/rc: Remove -g from $CCFLAGS and -static from $LLDFLAGS (diff) | |
download | dotfiles-2e9b5d2747c48bf301df7ade8e059098760038a1.tar.gz dotfiles-2e9b5d2747c48bf301df7ade8e059098760038a1.tar.xz |
etc/sh/rc: Use C17 in $CCFLAGS!
POSIX 2024 has been published!
https://news.ycombinator.com/item?id=40679809
Diffstat (limited to 'etc/sh')
-rw-r--r-- | etc/sh/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ export CCFLAGS=' -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -fPIE - -std=c99 + -std=c17 -Wall -Wextra -Wpedantic |