Changeset 884 for trunk/src/ash-messup/shfile.h
- Timestamp:
- Apr 22, 2007, 12:17:42 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ash-messup/shfile.h
r883 r884 53 53 54 54 int shfile_open(shfdtab *, const char *, unsigned); 55 int shfile_pipe(shfdtab *, int [2]); 55 56 int shfile_close(shfdtab *, unsigned); 57 int shfile_fcntl(shfdtab *, int fd, int cmd, int arg); 58 #ifdef _MSC_VER 59 # define F_DUPFD 0 60 # define F_GETFD 1 61 # define F_SETFD 2 62 # define F_GETFL 3 63 # define F_SETFL 4 64 # define FD_CLOEXEC 1 65 #else 66 # include <sys/fcntl.h> 67 #endif 56 68 57 69 int shfile_stat(shfdtab *, const char *, struct stat *);
Note:
See TracChangeset
for help on using the changeset viewer.