mirror of
https://github.com/fluencelabs/musl
synced 2025-06-19 18:01:43 +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);
|
||
|
}
|