summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/sys/stat.h
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-05-08 01:15:06 +0000
committerChristopher Faylor <me@cgf.cx>2001-05-08 01:15:06 +0000
commitca60ed47488dfbbdf3aec79426f5758c814c4880 (patch)
treec5732cffca2707ef330f00a6a8e3268fed12b533 /newlib/libc/include/sys/stat.h
parent8f2e6ee891c46bc65e2770a2dd08897b532f8a9a (diff)
downloadcygnal-ca60ed47488dfbbdf3aec79426f5758c814c4880.tar.gz
cygnal-ca60ed47488dfbbdf3aec79426f5758c814c4880.tar.bz2
cygnal-ca60ed47488dfbbdf3aec79426f5758c814c4880.zip
* libc/include/sys/stat.h: Revert March 3, Cygwin change.
* libc/include/sys/Ditto.h: Ditto.
Diffstat (limited to 'newlib/libc/include/sys/stat.h')
-rw-r--r--newlib/libc/include/sys/stat.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/newlib/libc/include/sys/stat.h b/newlib/libc/include/sys/stat.h
index 802244f3d..bca437707 100644
--- a/newlib/libc/include/sys/stat.h
+++ b/newlib/libc/include/sys/stat.h
@@ -106,18 +106,6 @@ struct stat
#define S_IWOTH 0000002 /* write permission, other */
#define S_IXOTH 0000001/* execute/search permission, other */
-#if defined (__CYGWIN__) && !defined (__INSIDE_CYGWIN__)
-extern unsigned const _cygwin_S_IEXEC, _cygwin_S_IXUSR, _cygwin_S_IXGRP, _cygwin_S_IXOTH;
-#undef S_IEXEC
-#undef S_IXUSR
-#undef S_IXGRP
-#undef S_IXOTH
-#define S_IEXEC _cygwin_S_IEXEC
-#define S_IXUSR _cygwin_S_IXUSR
-#define S_IXGRP _cygwin_S_IXGRP
-#define S_IXOTH _cygwin_S_IXOTH
-#endif
-
#define S_ISBLK(m) (((m)&_IFMT) == _IFBLK)
#define S_ISCHR(m) (((m)&_IFMT) == _IFCHR)
#define S_ISDIR(m) (((m)&_IFMT) == _IFDIR)