diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-09-08 20:22:08 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-09-08 20:22:08 -0400 |
commit | 6cf8bfdb646efaf76c75a95d1ea0cd254706c037 (patch) | |
tree | bc640847a316bb36ba69d81cc2b5230f55f905f0 /include/sys/socket.h | |
parent | b10d0230c1837be34e4ece7d6b11d19f1b578b9f (diff) | |
download | musl-6cf8bfdb646efaf76c75a95d1ea0cd254706c037.tar.gz musl-6cf8bfdb646efaf76c75a95d1ea0cd254706c037.tar.bz2 musl-6cf8bfdb646efaf76c75a95d1ea0cd254706c037.tar.xz musl-6cf8bfdb646efaf76c75a95d1ea0cd254706c037.zip |
add acct, accept4, setns, and dup3 syscalls (linux extensions)
based on patch by Justin Cormack
Diffstat (limited to 'include/sys/socket.h')
-rw-r--r-- | include/sys/socket.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sys/socket.h b/include/sys/socket.h index 97d78871..4afec4ef 100644 --- a/include/sys/socket.h +++ b/include/sys/socket.h @@ -255,6 +255,10 @@ int sockatmark (int); #define SHUT_WR 1 #define SHUT_RDWR 2 +#ifdef _GNU_SOURCE +int accept4(int, struct sockaddr *__restrict, socklen_t *__restrict, int); +#endif + #ifdef __cplusplus } #endif |