21 lines
288 B
C
21 lines
288 B
C
|
/* sys/utsname.h: Kernel name and information. */
|
||
|
|
||
|
#ifndef _SYS_UTSNAME_H
|
||
|
#define _SYS_UTSNAME_H
|
||
|
|
||
|
#include <bits/struct_utsname.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/* Get kernel name and information. */
|
||
|
int uname(struct utsname* buf);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|