1
0
mirror of https://github.com/bebbo/amiga-gcc.git synced 2026-05-10 09:06:32 +00:00
Files
amiga-gcc/sys-include/sys/utime.h
2022-12-31 15:57:19 +01:00

25 lines
437 B
C

#ifndef _SYS_UTIME_H
#define _SYS_UTIME_H
/* This is a dummy <sys/utime.h> file, not customized for any
particular system. If there is a utime.h in libc/sys/SYSDIR/sys,
it will override this one. */
#ifdef __cplusplus
extern "C" {
#endif
struct utimbuf
{
time_t actime;
time_t modtime;
};
__stdargs int utime(const char *filename, const struct utimbuf *times);
#ifdef __cplusplus
};
#endif
#endif /* _SYS_UTIME_H */