libc/newlib/libc/sys/sysvi386/sys/utime.h

13 lines
144 B
C
Raw Normal View History

2000-02-17 20:39:52 +01:00
#ifndef _SYS_UTIME_H
# define _SYS_UTIME_H
#include <time.h>
struct utimbuf {
time_t actime;
time_t modtime;
};
#endif /* _SYS_UTIME_H */