URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [linux/] [sys/] [utime.h] - Rev 816
Compare with Previous | Blame | View Log
#ifndef _SYS_UTIME_H #define _SYS_UTIME_H 1 #include <sys/types.h> struct utimbuf { time_t actime; /* Access time. */ time_t modtime; /* Modification time. */ }; int _EXFUN(utime, (const char *__file, const struct utimbuf *__times)); #endif /* _SYS_UTIME_H */