Renamed utsname struct
This commit is contained in:
parent
d675bd01c7
commit
4fbcbe2298
1 changed files with 2 additions and 2 deletions
|
@ -1,13 +1,13 @@
|
|||
#ifndef _SYS_UTSNAME_H
|
||||
#define _SYS_UTSNAME_H
|
||||
|
||||
typedef struct _uname {
|
||||
struct utsname {
|
||||
char sysname[70];
|
||||
char nodename[70];
|
||||
char release[70];
|
||||
char version[70];
|
||||
char machine[70];
|
||||
} utsname;
|
||||
};
|
||||
|
||||
int uname(utsname *);
|
||||
|
||||
|
|
Loading…
Reference in a new issue