Changeset ca4c6ec1 in mainline for uspace/lib/posix/include/posix/fcntl.h
- Timestamp:
- 2012-08-31T10:18:53Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f8cbe2c3
- Parents:
- a3da2b2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/fcntl.h
ra3da2b2 rca4c6ec1 72 72 #define FD_CLOEXEC 1 /* Close on exec. */ 73 73 74 #undef open 75 #define open(path, ...) \ 76 ({ \ 77 int rc = open(path, ##__VA_ARGS__); \ 78 if (rc < 0) { \ 79 errno = -rc; \ 80 rc = -1; \ 81 } \ 82 rc; \ 83 }) 84 74 extern int posix_open(const char *pathname, int flags, ...); 85 75 extern int posix_fcntl(int fd, int cmd, ...); 86 76 87 77 #ifndef LIBPOSIX_INTERNAL 88 78 #define fcntl posix_fcntl 79 #define open posix_open 89 80 #endif 90 81
Note:
See TracChangeset
for help on using the changeset viewer.