mirror of
https://github.com/fluencelabs/musl
synced 2025-06-26 13:12:03 +00:00
10 lines
135 B
C
10 lines
135 B
C
![]() |
#include <unistd.h>
|
||
|
#include <sys/utsname.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int getdomainname(char *name, size_t len)
|
||
|
{
|
||
|
*name = 0;
|
||
|
return 0;
|
||
|
}
|