1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef __SYS_UTSNAME_H #define __SYS_UTSNAME_H #include <features.h> #include <sys/param.h> struct utsname { char sysname[65]; char nodename[65]; char release[65]; char version[65]; char machine[65]; char domainname[65]; }; __BEGIN_DECLS extern int uname __P ((struct utsname * __utsbuf)); __END_DECLS #endif