diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-22 14:51:03 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-22 14:51:03 (GMT) |
commit | ed79548a842af2d249cf369c16f9f440c4fd18da (patch) | |
tree | 84403bc7c102bf44514a20ae9b99baf968388b3e /Mac/Compat/macstat.h | |
parent | 0e1c24ab8953c28a02dda33c61c13c03c628dcd2 (diff) | |
download | cpython-ed79548a842af2d249cf369c16f9f440c4fd18da.zip cpython-ed79548a842af2d249cf369c16f9f440c4fd18da.tar.gz cpython-ed79548a842af2d249cf369c16f9f440c4fd18da.tar.bz2 |
No need to make the S_ constants 32 bit (and its actually harmful because of multiple defines).
Diffstat (limited to 'Mac/Compat/macstat.h')
-rw-r--r-- | Mac/Compat/macstat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Compat/macstat.h b/Mac/Compat/macstat.h index d6cad85..10d9653 100644 --- a/Mac/Compat/macstat.h +++ b/Mac/Compat/macstat.h @@ -20,9 +20,9 @@ struct macstat { char st_creator[4]; /* File creator, e.g. 'PYTH' */ }; -#define S_IFMT 0170000L -#define S_IFDIR 0040000L -#define S_IFREG 0100000L +#define S_IFMT 0170000 +#define S_IFDIR 0040000 +#define S_IFREG 0100000 #define S_IREAD 0400 #define S_IWRITE 0200 #define S_IEXEC 0100 |