source: trunk/minix/include/sys/utsname.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 394 bytes
Line 
1/* The <sys/utsname.h> header gives the system name. */
2
3#ifndef _UTSNAME_H
4#define _UTSNAME_H
5
6#ifndef _ANSI_H
7#include <ansi.h>
8#endif
9
10struct utsname {
11 char sysname[15+1];
12 char nodename[255+1];
13 char release[11+1];
14 char version[7+1];
15 char machine[11+1];
16 char arch[11+1];
17};
18
19/* Function Prototypes. */
20_PROTOTYPE( int uname, (struct utsname *_name) );
21
22#endif /* _UTSNAME_H */
Note: See TracBrowser for help on using the repository browser.