diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-05-01 20:00:24 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-05-01 20:00:24 +0000 |
commit | 028e2e38795854365b0a9414273fbbc7ea84548a (patch) | |
tree | cddcc56be9cbab885f77147fb8ac3fa431756eaf /conform/data/tar.h-data | |
parent | 1b8f2850d8c95619598241e91a7249bba5775be1 (diff) | |
download | glibc-028e2e38795854365b0a9414273fbbc7ea84548a.tar glibc-028e2e38795854365b0a9414273fbbc7ea84548a.tar.gz glibc-028e2e38795854365b0a9414273fbbc7ea84548a.tar.bz2 glibc-028e2e38795854365b0a9414273fbbc7ea84548a.zip |
conformtest: Unify variants of "constant" and "optional-constant".
Diffstat (limited to 'conform/data/tar.h-data')
-rw-r--r-- | conform/data/tar.h-data | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/conform/data/tar.h-data b/conform/data/tar.h-data index aa0cebc3f1..591850c144 100644 --- a/conform/data/tar.h-data +++ b/conform/data/tar.h-data @@ -1,8 +1,8 @@ #if !defined ISO && !defined ISO99 && !defined ISO11 macro-str TMAGIC "ustar" -constant TMAGLEN 6 +constant TMAGLEN == 6 macro-str TVERSION "00" -constant TVERSLEN 2 +constant TVERSLEN == 2 constant REGTYPE constant AREGTYPE @@ -14,20 +14,20 @@ constant DIRTYPE constant FIFOTYPE constant CONTTYPE -constant TSUID 04000 -constant TSGID 02000 +constant TSUID == 04000 +constant TSGID == 02000 # if !defined POSIX && !defined POSIX2008 -constant TSVTX 01000 +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 +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 |