purely cosmetic commit: edited the introductory comments of several files to uniform...
[reactos.git] / posix / include / sys / utsname.h
1 /* $Id: utsname.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $
2 */
3 /*
4 * sys/utsname.h
5 *
6 * system name structure. Conforming to the Single UNIX(r) Specification
7 * Version 2, System Interface & Headers Issue 5
8 *
9 * This file is part of the ReactOS Operating System.
10 *
11 * Contributors:
12 * Created by KJK::Hyperion <noog@libero.it>
13 *
14 * THIS SOFTWARE IS NOT COPYRIGHTED
15 *
16 * This source code is offered for use in the public domain. You may
17 * use, modify or distribute it freely.
18 *
19 * This code is distributed in the hope that it will be useful but
20 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
21 * DISCLAMED. This includes but is not limited to warranties of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 *
24 */
25 #ifndef __SYS_UTSNAME_H_INCLUDED__
26 #define __SYS_UTSNAME_H_INCLUDED__
27
28 /* INCLUDES */
29
30 /* OBJECTS */
31
32 /* TYPES */
33 struct utsname
34 {
35 char sysname[255]; /* name of this implementation of the operating system */
36 char nodename[255]; /* name of this node within an implementation-dependent
37 communications network */
38 char release[255]; /* current release level of this implementation */
39 char version[255]; /* current version level of this release */
40 char machine[255]; /* name of the hardware type on which the system is
41 running */
42 };
43
44 /* CONSTANTS */
45
46 /* PROTOTYPES */
47 int uname(struct utsname *);
48
49 /* MACROS */
50
51 #endif /* __SYS_UTSNAME_H_INCLUDED__ */
52
53 /* EOF */
54