summaryrefslogtreecommitdiff
path: root/lib/libc/socket/shutdown.c
blob: fd14c70f3b03a071150545d50ea72dd9bbce9ebf (plain)
1
2
3
4
5
6
7
8


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

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