fix the type of wchar_t on arm; support wchar_t varying with arch
[musl] / src / misc / getdomainname.c
1 #include <unistd.h>
2 #include <sys/utsname.h>
3 #include <string.h>
4
5 int getdomainname(char *name, size_t len)
6 {
7         *name = 0;
8         return 0;
9 }