|
|
1.1 root 1: /*++
2:
3: Copyright (c) 1989 Microsoft Corporation
4:
5: Module Name:
6:
7: utsname.h
8:
9: Abstract:
10:
11: This module contains the utsname structure described in section 4.4.1.2
12: of IEEE P1003.1/Draft 13.
13:
14: --*/
15:
16: #ifndef _UTSNAME_
17: #define _UTSNAME_
18:
19: #include <limits.h>
20:
1.1.1.2 ! root 21: #ifdef __cplusplus
! 22: extern "C" {
! 23: #endif
! 24:
1.1 root 25: struct utsname {
26: char sysname[_POSIX_NAME_MAX];
27: char nodename[_POSIX_NAME_MAX];
28: char release[_POSIX_NAME_MAX];
29: char version[_POSIX_NAME_MAX];
30: char machine[_POSIX_NAME_MAX];
31: };
32:
1.1.1.2 ! root 33: #ifdef __cplusplus
! 34: }
! 35: #endif
! 36:
1.1 root 37: #endif /* _UTSNAME_ */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.