Changeset 184
- Timestamp:
- 06/11/07 08:46:30 (1 year ago)
- Files:
-
- trunk/src/h-basic.h (modified) (2 diffs)
- trunk/src/z-file.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/h-basic.h
r182 r184 47 47 # endif 48 48 49 50 51 /* 52 * Everyone except RISC OS has fcntl.h 53 */ 54 #ifndef RISCOS 55 # define HAVE_FCNTL_H 56 #endif 49 57 50 58 #endif /* HAVE_CONFIG_H */ … … 70 78 /* Without autoconf, turn on some things */ 71 79 # ifndef HAVE_CONFIG_H 72 # define HAVE_FCNTL_H73 80 # define HAVE_DIRENT_H 74 81 # endif trunk/src/z-file.c
r182 r184 682 682 errr fd_lock(int fd, int what) 683 683 { 684 #if def HAVE_FCNTL_H684 #if defined(HAVE_FCNTL_H) && defined(SET_UID) 685 685 686 686 struct flock lock;
