diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-04-15 17:01:58 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-04-15 17:01:58 -0400 |
commit | a68af229266d1a937a98fc7474ebe09b7c3c72b3 (patch) | |
tree | 9dbb04586e44e8cb2d5e5cd337c12c0fba657c9d /arch/i386/bits | |
parent | b9dd43db04ca312c3c1cc6ddc77e8f5bf559e72d (diff) | |
download | musl-a68af229266d1a937a98fc7474ebe09b7c3c72b3.tar.gz musl-a68af229266d1a937a98fc7474ebe09b7c3c72b3.tar.xz musl-a68af229266d1a937a98fc7474ebe09b7c3c72b3.zip |
add F_SETSIG and F_GETSIG (linux specific) to fcntl.h
F_* is in the reserved namespace so no feature test is needed
Diffstat (limited to 'arch/i386/bits')
-rw-r--r-- | arch/i386/bits/fcntl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/i386/bits/fcntl.h b/arch/i386/bits/fcntl.h index 33a5185c..ab146525 100644 --- a/arch/i386/bits/fcntl.h +++ b/arch/i386/bits/fcntl.h @@ -25,6 +25,8 @@ #define F_SETOWN 8 #define F_GETOWN 9 +#define F_SETSIG 10 +#define F_GETSIG 11 #define F_GETLK 12 #define F_SETLK 13 |