home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / include / sys / utsname.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-14  |  375 b   |  25 lines

  1. #ifndef _SYS_UTSNAME_H
  2. #define _SYS_UTSNAME_H
  3.  
  4. #include <features.h>
  5. #include <sys/param.h>
  6.  
  7. struct utsname {
  8.     char sysname[65];
  9.     char nodename[65];
  10.     char release[65];
  11.     char version[65];
  12.     char machine[65];
  13.     char domainname[65];
  14. };
  15.  
  16.  
  17. __BEGIN_DECLS
  18.  
  19. extern int uname __P ((struct utsname * __utsbuf));
  20. extern int __uname __P ((struct utsname * __utsbuf));
  21.  
  22. __END_DECLS
  23.  
  24. #endif
  25.