Luna/libc/include/sys/utsname.h

21 lines
288 B
C
Raw Normal View History

2023-04-24 18:34:44 +00:00
/* 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