strace/tests/sethostname.c

25 lines
352 B
C
Raw Normal View History

#include "tests.h"
#include <sys/syscall.h>
#ifdef __NR_sethostname
# include <stdio.h>
# include <unistd.h>
int
main(void)
{
2016-04-22 00:22:50 +03:00
long rc = syscall(__NR_sethostname, 0, 63);
printf("sethostname(NULL, 63) = %ld %s (%m)\n",
rc, errno2name());
puts("+++ exited with 0 +++");
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_sethostname")
#endif