source: branches/libc-0.6/src/emx/include/sys/utsname.h

Last change on this file was 18, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 398 bytes
Line 
1/* sys/utsname.h (emx+gcc) */
2
3#ifndef _SYS_UTSNAME_H
4#define _SYS_UTSNAME_H
5
6#if defined (__cplusplus)
7extern "C" {
8#endif
9
10#define _UN_LEN 16
11
12struct utsname
13{
14 char sysname[_UN_LEN];
15 char nodename[_UN_LEN];
16 char release[_UN_LEN];
17 char version[_UN_LEN];
18 char machine[_UN_LEN];
19};
20
21int uname (struct utsname *);
22
23#if defined (__cplusplus)
24}
25#endif
26
27#endif /* not SYS_UTSNAME_H */
Note: See TracBrowser for help on using the repository browser.