OSDN Git Service

Cleanup the toploevel makefile handing of shared libs. Add weak_alias
[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