summaryrefslogtreecommitdiff
path: root/wince/sys/utime.h
blob: 46a4ddc1a1f972b4b318497212f1ae69ce648153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef SYS_UTIME_H
#define SYS_UTIME_H 1

#include <time.h>

struct utimbuf 
{
  time_t actime;
  time_t modtime;
};

#define _utimbuf utimbuf


#ifdef __cplusplus
extern "C" {
#endif

int _utime(const char *f, struct utimbuf *t);

#ifdef __cplusplus
};
#endif

#define utime _utime

#endif