home *** CD-ROM | disk | FTP | other *** search
- /* sys/utsname.h (emx+gcc) */
-
- #if !defined (_SYS_UTSNAME_H)
- #define _SYS_UTSNAME_H
-
- #if defined (__cplusplus)
- extern "C" {
- #endif
-
- #define _UN_LEN 16
-
- struct utsname
- {
- char sysname[_UN_LEN];
- char nodename[_UN_LEN];
- char release[_UN_LEN];
- char version[_UN_LEN];
- char machine[_UN_LEN];
- };
-
- int uname (struct utsname *name);
-
- #if defined (__cplusplus)
- }
- #endif
-
- #endif /* !defined (SYS_UTSNAME_H) */
-