diff options
author | Michael Forney <mforney@mforney.org> | 2021-01-23 19:47:12 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2021-01-23 19:47:12 -0800 |
commit | 988bdd05a326687daa1852c9ff395230743b30d8 (patch) | |
tree | c5837f081e6993abc86b781481bb1af8fc98e48d /sys/src/cmd/python | |
parent | 443d5256bdb6b0fb73795706fc5d48a12a3cd0dc (diff) |
[9front] ape: remove _SUSV2_SOURCE guard from inttypes.h
inttypes.h was added to C99, and this is the only header that used
_SUSV2_SOURCE.
Also, remove now unneeded _SUSV2_SOURCE from python mkfile.
Diffstat (limited to 'sys/src/cmd/python')
-rw-r--r-- | sys/src/cmd/python/Extra/mkfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/python/Extra/mkfile b/sys/src/cmd/python/Extra/mkfile index cf30e453d..289dec59b 100644 --- a/sys/src/cmd/python/Extra/mkfile +++ b/sys/src/cmd/python/Extra/mkfile @@ -7,7 +7,7 @@ OFILES=`{du -a . | grep '.c$' | awk '{print $2}' | sed 's/.$/\$O/'} </sys/src/cmd/mklib -CFLAGS=-c -I.. -I../Include -DT$objtype -D_SUSV2_SOURCE -DNDEBUG +CFLAGS=-c -I.. -I../Include -DT$objtype -DNDEBUG %.$O: %.c $CC $CFLAGS -o $stem.$O $stem.c |