mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
20 lines
332 B
C
20 lines
332 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#define UTSNAME_ENTRY_LEN 65
|
|
|
|
__BEGIN_DECLS
|
|
|
|
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*);
|
|
|
|
__END_DECLS
|
|
|