summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/gethostname.c
blob: 5bd303f56c84431b8299122c6d24ee9595efa4a2 (plain)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>
#include <syscall.h>

int gethostname(char *name, size_t namelen)
{
	(void)name;
	(void)namelen;
	// TODO
	return 0;
}