stdio: fputs()
[neatlibc.git] / utime.h
blob572f0c5d2c96aa65a6ef172cbf1b0b892e0f1354
1 #ifndef _UTIME_H
2 #define _UTIME_H
4 #include <sys/types.h>
6 struct utimbuf {
7 time_t actime;
8 time_t modtime;
9 };
11 int utime(char *path, struct utimbuf *times);
13 #endif