#ifndef _UTIME_H_ #define _UTIME_H_ /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: utime.h 19609 2003-09-04 10:21:05Z iaint $ Desc: ANSI-C header file utime.h Lang: english */ #include #include #ifndef __AROS_TIME_T_DECLARED #define __AROS_TIME_T_DECLARED typedef __time_t time_t; #endif struct utimbuf { time_t actime; /* Access time */ time_t modtime; /* Modification time */ }; __BEGIN_DECLS int utime(const char *filename, struct utimbuf *buf); __END_DECLS #endif /* !_UTIME_H_ */