Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1882 clevermous 1
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
#ifndef __dj_include_utime_h_
3
#define __dj_include_utime_h_
4
 
5
#ifdef __cplusplus
6
extern "C" {
7
#endif
8
 
9
#ifndef __dj_ENFORCE_ANSI_FREESTANDING
10
 
11
#ifndef __STRICT_ANSI__
12
 
13
#include 
14
__DJ_time_t
15
#undef __DJ_time_t
16
#define __DJ_time_t
17
 
18
struct utimbuf {
19
  time_t actime;
20
  time_t modtime;
21
};
22
 
23
int	utime(const char *_path, const struct utimbuf *_times);
24
 
25
#ifndef _POSIX_SOURCE
26
 
27
#endif /* !_POSIX_SOURCE */
28
#endif /* !__STRICT_ANSI__ */
29
#endif /* !__dj_ENFORCE_ANSI_FREESTANDING */
30
 
31
#ifndef __dj_ENFORCE_FUNCTION_CALLS
32
#endif /* !__dj_ENFORCE_FUNCTION_CALLS */
33
 
34
#ifdef __cplusplus
35
}
36
#endif
37
 
38
#endif /* !__dj_include_utime_h_ */