diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-05-22 22:04:55 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-05-22 22:04:55 -0400 |
commit | 671ffab7769b4dfd873f0c585444823a67dc56bc (patch) | |
tree | 434ab7191fca83540eb6fc8262ec86902634f8ec /include/fcntl.h | |
parent | 9f370fa99e2c25a717a672ee0a766d56e9d68a9a (diff) | |
download | musl-671ffab7769b4dfd873f0c585444823a67dc56bc.tar.gz musl-671ffab7769b4dfd873f0c585444823a67dc56bc.tar.bz2 musl-671ffab7769b4dfd873f0c585444823a67dc56bc.tar.xz musl-671ffab7769b4dfd873f0c585444823a67dc56bc.zip |
various header cleanups, some related to _BSD_SOURCE addition
there is no reason to avoid multiple identical macro definitions; this
is perfectly legal C, and even with the maximal warning options
enabled, gcc does not issue any warning for it.
Diffstat (limited to 'include/fcntl.h')
-rw-r--r-- | include/fcntl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index f826a5e4..85f867b3 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -87,7 +87,6 @@ int posix_fallocate(int, off_t, off_t); #define FNONBLOCK O_NONBLOCK #define FNDELAY O_NDELAY -#ifndef F_OK #define F_OK 0 #define R_OK 4 #define W_OK 2 @@ -96,9 +95,9 @@ int posix_fallocate(int, off_t, off_t); #define F_LOCK 1 #define F_TLOCK 2 #define F_TEST 3 + int lockf(int, int, off_t); #endif -#endif #ifdef _LARGEFILE64_SOURCE #define open64 open |