1 2 3 4 5 6 7 8 9 10 11
#ifndef __UTIME_H #define __UTIME_H struct utimbuf { long actime; long modtime; }; int utime(const char *, const struct utimbuf *); #endif