Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
uname(2) uname(2)
NAME
uname(), setuname() - get information about computer system; set node
name (system name)
SYNOPSIS
#include <sys/utsname.h>
int uname(struct utsname *name);
int setuname(const char *name, size_t namelen);
DESCRIPTION
uname()
The uname() system call places information identifying the computer
system in the utsname structure pointed to by name.
The utsname structure, defined in <sys/utsname.h>, is set up as
follows:
#define UTSLEN 9
#define SNLEN 15
char sysname[UTSLEN];
char nodename[UTSLEN];
char release[UTSLEN];
char version[UTSLEN];
char machine[UTSLEN];
char idnumber[SNLEN];
<skip>
<skip>
<skip>
STANDARDS CONFORMANCE
uname(): AES, SVID2, SVID3, XPG2, XPG3, XPG4, FIPS 151-2, POSIX.1