mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
18 lines
296 B
C
18 lines
296 B
C
#pragma once
|
|
|
|
#define UTSNAME_ENTRY_LEN 65
|
|
|
|
extern "C" {
|
|
|
|
struct utsname {
|
|
char sysname[UTSNAME_ENTRY_LEN];
|
|
char nodename[UTSNAME_ENTRY_LEN];
|
|
char release[UTSNAME_ENTRY_LEN];
|
|
char version[UTSNAME_ENTRY_LEN];
|
|
char machine[UTSNAME_ENTRY_LEN];
|
|
};
|
|
|
|
int uname(struct utsname*);
|
|
|
|
}
|