Renamed 'makefile' to 'Makefile' in order to build on linux
[reactos.git] / posix / include / utime.h
1 /* $Id: utime.h,v 1.4 2002/10/29 04:45:26 rex Exp $
2 */
3 /*
4 * utime.h
5 *
6 * access and modification times structure. Conforming to the Single
7 * UNIX(r) Specification 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 __UTIME_H_INCLUDED__
26 #define __UTIME_H_INCLUDED__
27
28 /* INCLUDES */
29 #include <sys/types.h>
30
31 /* OBJECTS */
32
33 /* TYPES */
34 struct utimbuf
35 {
36 time_t actime; /* access time */
37 time_t modtime; /* modification time */
38 };
39
40 /* CONSTANTS */
41
42 /* PROTOTYPES */
43 int utime(const char *, const struct utimbuf *);
44
45 /* MACROS */
46
47 #endif /* __UTIME_H_INCLUDED__ */
48
49 /* EOF */
50