mirror of
https://github.com/fluencelabs/musl
synced 2025-05-21 11:41:29 +00:00
9 lines
161 B
C
9 lines
161 B
C
|
#define _GNU_SOURCE
|
||
|
#include <unistd.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int setdomainname(const char *name, size_t len)
|
||
|
{
|
||
|
return syscall(SYS_setdomainname, name, len);
|
||
|
}
|