4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-18 04:19:21 +08:00

9 lines
195 B
C
Raw Normal View History

/* libc/sys/linux/sethostname.c - Set host name */
/* Copyright 2002, Red Hat Inc. */
#include <unistd.h>
#include <machine/syscall.h>
_syscall2(int,sethostname,const char *,name,size_t,len);