]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/linux/sethostname.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / linux / sethostname.c
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include "syscall.h"
4
5 int sethostname(const char *name, size_t len)
6 {
7 return syscall(SYS_sethostname, name, len);
8 }