as an extension, have putenv("VAR") behave as unsetenv("VAR")
[musl] / src / network / setsockopt.c
1 #include <sys/socket.h>
2 #include "syscall.h"
3
4 int setsockopt(int fd, int level, int optname, const void *optval, socklen_t optlen)
5 {
6         return socketcall(setsockopt, fd, level, optname, optval, optlen, 0);
7 }