Commit /bin/cc.exe (a hardlink of /bin/gcc.exe)
[msysgit.git] / include / sys / utsname.h
blobbb770c0f1d87f265039cf9b31937db615cb35dc9
1 /* sys/utsname.h
3 Copyright 2001 Red Hat, Inc.
5 This file is part of Cygwin.
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. */
11 #ifndef _SYS_UTSNAME_H
12 #define _SYS_UTSNAME_H
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
18 struct utsname
20 char sysname[20];
21 char nodename[20];
22 char release[20];
23 char version[20];
24 char machine[20];
27 int uname (struct utsname *);
29 #ifdef __cplusplus
31 #endif
33 #endif