1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
Files
glibc/conform/data/cpio.h-data
Collin Funk d18213c699 conform: Add initial support for C23.
Hi Joseph,

As we discussed, this patch just makes C23 include every check that is
performed by C11.

I tested the commit by adding the ISO23 Make and Python variables to be
the same as ISO11.  So the only difference was compiling with -DISO23
instead of -DISO11.  And changed the temporary directories to instead
use the format f'/tmp/glibc-{self.standard}-{self.header}'.  Then I used
a shell script to run 'cmp' on each file in the ISO11 and ISO23
directories for each header to make sure they were the same.

-- 8< --

Make C23 checks include every test that is performed by C11.  Done by
running the following command:

find conform -name '*.h-data' | xargs sed -i \
  -e 's| !defined ISO11| !defined ISO11 \&\& !defined ISO23|g' \
  -e 's| defined ISO11| defined ISO11 \|\| defined ISO23|g' \
  -e 's|ifdef ISO11|if defined ISO11 \|\| defined ISO23|g' \
  -e 's|ifndef ISO11|if !defined ISO11 \&\& !defined ISO23|g'

Signed-off-by: Collin Funk <collin.funk1@gmail.com>
2025-04-10 18:39:05 +00:00

27 lines
695 B
Plaintext

#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined ISO23 && !defined POSIX
constant C_IRUSR == 0000400
constant C_IWUSR == 0000200
constant C_IXUSR == 0000100
constant C_IRGRP == 0000040
constant C_IWGRP == 0000020
constant C_IXGRP == 0000010
constant C_IROTH == 0000004
constant C_IWOTH == 0000002
constant C_IXOTH == 0000001
constant C_ISUID == 0004000
constant C_ISGID == 0002000
constant C_ISVTX == 0001000
constant C_ISDIR == 0040000
constant C_ISFIFO == 0010000
constant C_ISREG == 0100000
constant C_ISBLK == 0060000
constant C_ISCHR == 0020000
constant C_ISCTG == 0110000
constant C_ISLNK == 0120000
constant C_ISSOCK == 0140000
macro-str MAGIC "070707"
allow *_t
#endif