summaryrefslogtreecommitdiff
path: root/lib/libc/socket/shutdown.c
blob: 7fcae79bae2a6ff3e867b2e91d4b2d927ae533f2 (plain)
1
2
3
4
5
6
7
8
#include "asm/unistd_64.h" // for __NR_shutdown

#include <syscall.h> // for __syscall_2, syscall

int shutdown(int socket, int how)
{
	return syscall(shutdown, socket, how);
}