Changeset 113
- Timestamp:
- 05/05/07 19:58:18 (2 years ago)
- Files:
-
- trunk/src/z-file.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/z-file.h
r41 r113 3 3 4 4 /*** Various system-specific fixes ***/ 5 6 /*7 * Several systems have no "O_BINARY" flag8 */9 #ifndef O_BINARY10 # define O_BINARY 011 #endif /* O_BINARY */12 13 5 14 6 /* … … 22 14 # define O_RDWR 2 23 15 #endif 16 17 18 /* 19 * Several systems have no "O_BINARY" flag 20 */ 21 #ifndef O_BINARY 22 # define O_BINARY 0 23 #endif /* O_BINARY */ 24 24 25 25 26 /*
