diff options
author | Miro Jurisic <meeroh@mit.edu> | 1999-03-27 22:38:24 +0000 |
---|---|---|
committer | Miro Jurisic <meeroh@mit.edu> | 1999-03-27 22:38:24 +0000 |
commit | 4bd9393ffdabad4f555fd27404414d944d8fbf81 (patch) | |
tree | f0f8cc5e5d379f6e9acc07dcea65974e9d41b106 /src/include | |
parent | a8be84d0a3f4ee659606260a5ea106a2d95d510f (diff) | |
download | krb5-4bd9393ffdabad4f555fd27404414d944d8fbf81.tar.gz krb5-4bd9393ffdabad4f555fd27404414d944d8fbf81.tar.xz krb5-4bd9393ffdabad4f555fd27404414d944d8fbf81.zip |
Changed stat.h typedefs to not be included if building with CodeWarrior, to prevent conflicts with MSL stat.h
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11321 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/win-mac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/win-mac.h b/src/include/win-mac.h index a666f32d67..02f3226f63 100644 --- a/src/include/win-mac.h +++ b/src/include/win-mac.h @@ -259,6 +259,7 @@ typedef unsigned long size_t; */ /* there is no <stat.h> for mpw */ +#ifndef __MWERKS__ typedef unsigned long mode_t; typedef unsigned long ino_t; typedef unsigned long dev_t; @@ -267,7 +268,6 @@ typedef unsigned long uid_t; typedef unsigned long gid_t; typedef long off_t; -#ifndef __MWERKS__ struct stat { mode_t st_mode; /* File mode; see #define's below */ |