65664ec9dc963876a7f67abab51c3d3c43659854
[reactos.git] / posix / include / sys / time.h
1 /* $Id: time.h,v 1.3 2002/05/17 01:37:15 hyperion Exp $
2 */
3 /*
4 * sys/time.h
5 *
6 * time types. Conforming to the Single UNIX(r) Specification Version 2,
7 * 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_TIME_H_INCLUDED__
26 #define __SYS_TIME_H_INCLUDED__
27
28 /* INCLUDES */
29
30 /* OBJECTS */
31
32 /* TYPES */
33 struct timeval
34 {
35 time_t tv_sec; /* seconds */
36 suseconds_t tv_usec; /* microseconds */
37 };
38
39 /* CONSTANTS */
40
41 /* PROTOTYPES */
42
43 /* MACROS */
44
45 #endif /* __SYS_TIME_H_INCLUDED__ */
46
47 /* EOF */
48