]> granicus.if.org Git - python/commitdiff
No need to make the S_ constants 32 bit (and its actually harmful because of multiple...
authorJack Jansen <jack.jansen@cwi.nl>
Mon, 22 Jan 2001 14:51:03 +0000 (14:51 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Mon, 22 Jan 2001 14:51:03 +0000 (14:51 +0000)
Mac/Compat/macstat.h

index d6cad8519421c3a0eecddcac7b6e0ea09869bb16..10d9653915b3116c3da6a7cd909895b3675c974d 100644 (file)
@@ -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