diff options
| author | Keith Vetter <keithv@fusion.com> | 1995-11-08 01:09:26 +0000 |
|---|---|---|
| committer | Keith Vetter <keithv@fusion.com> | 1995-11-08 01:09:26 +0000 |
| commit | c497df864f472079e0e8dbed2049225ac48b5f0c (patch) | |
| tree | 2cbc013a4a9d3a1f32725812bd248ef0b444ea73 /src/include | |
| parent | 2cd62f946ee1b20814bed2ee7cf6f8ccc2a432c9 (diff) | |
| download | krb5-c497df864f472079e0e8dbed2049225ac48b5f0c.tar.gz krb5-c497df864f472079e0e8dbed2049225ac48b5f0c.tar.xz krb5-c497df864f472079e0e8dbed2049225ac48b5f0c.zip | |
Fix build problem on Mac caused by multiple definitions of stat
function.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7048 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/ChangeLog | 6 | ||||
| -rw-r--r-- | src/include/k5-int.h | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 598c1d3c8..c04fdf6ea 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,9 @@ +Tue Nov 7 12:00:00 1995 John Rivlin <jrivlin@fusion.com> + + * k5-int.h: Place stat declation inside #ifndef __MWERKS__ so + as not to conflict with the definition in the + MetroWerks compiler. + Tue Oct 24 17:31:36 1995 Theodore Y. Ts'o <tytso@dcl> * k5-int.h: Manually defined PROVIDE_* for Macintosh and MS-DOS so diff --git a/src/include/k5-int.h b/src/include/k5-int.h index 739bd9f9e..14cf58747 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -231,6 +231,7 @@ typedef short nlink_t; typedef unsigned long uid_t; typedef unsigned long gid_t; typedef long off_t; + #ifndef __MWERKS__ struct stat { @@ -248,9 +249,10 @@ struct stat long st_blksize; /* Optimal blocksize */ long st_blocks; /* blocks allocated for file */ }; -#endif int stat(const char *path, struct stat *buf); +#endif + int fstat(int fildes, struct stat *buf); #define EFBIG 1000 |
