Luna/libc/include/sys/utsname.h
apio 9eab0886b6
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Add uname()
2023-04-24 20:34:44 +02:00

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