f095bb7204
The header conformance testing code needed extending for XPG7. This exposed a few bugs in the headers. There are more changes to come.
34 lines
590 B
Plaintext
34 lines
590 B
Plaintext
#ifndef ISO
|
|
macro-str TMAGIC "ustar"
|
|
constant TMAGLEN 6
|
|
macro-str TVERSION "00"
|
|
constant TVERSLEN 2
|
|
|
|
constant REGTYPE
|
|
constant AREGTYPE
|
|
constant LNKTYPE
|
|
constant SYMTYPE
|
|
constant CHRTYPE
|
|
constant BLKTYPE
|
|
constant DIRTYPE
|
|
constant FIFOTYPE
|
|
constant CONTTYPE
|
|
|
|
constant TSUID 04000
|
|
constant TSGID 02000
|
|
# if !defined POSIX && !defined POSIX2008
|
|
constant TSVTX 01000
|
|
# endif
|
|
constant TUREAD 00400
|
|
constant TUWRITE 00200
|
|
constant TUEXEC 00100
|
|
constant TGREAD 00040
|
|
constant TGWRITE 00020
|
|
constant TGEXEC 00010
|
|
constant TOREAD 00004
|
|
constant TOWRITE 00002
|
|
constant TOEXEC 00001
|
|
|
|
allow *_t
|
|
#endif
|