summaryrefslogtreecommitdiff
path: root/wince/include/sys/utime.h
blob: c98ddcf52cf51f54bd52b4c1214190dcf3773ce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef SYS_UTIME_H
#define SYS_UTIME_H 1

#include "time.h"

struct utimbuf 
{
  time_t actime;
  time_t modtime;
};

struct _utimbuf 
{
  time_t actime;
  time_t modtime;
};

#endif