mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
9 lines
195 B
C
9 lines
195 B
C
/* 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);
|