OSDN Git Service

Fix up breakage resulting from flipping the sense of some defines. Change from
[uclinux-h8/uClibc.git] / include / utime.h
1 #ifndef __UTIME_H
2 #define __UTIME_H
3
4 #include <features.h>
5 #include <sys/types.h>
6
7 struct utimbuf {
8         time_t actime;
9         time_t modtime;
10 };
11
12 extern int utime __P ((const char *__filename, struct utimbuf *__utimebuf));
13
14 #endif
15