home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / utsname.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  500b  |  34 lines

  1. /* sys/utsname.h
  2.  
  3.    Copyright 2001 Red Hat, Inc.
  4.  
  5. This file is part of Cygwin.
  6.  
  7. This software is a copyrighted work licensed under the terms of the
  8. Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
  9. details. */
  10.  
  11. #ifndef _SYS_UTSNAME_H
  12. #define _SYS_UTSNAME_H
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. struct utsname
  19. {
  20.   char sysname[20];
  21.   char nodename[20];
  22.   char release[20];
  23.   char version[20];
  24.   char machine[20];
  25. };
  26.  
  27. int uname (struct utsname *);
  28.  
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32.  
  33. #endif
  34.