* Removed sys/_types.h include, all types are now defined in include files named...
[AROS.git] / compiler / clib / include / utime.h
blob81064c0b8e718b5e8a9384706a92c581edd0b3ce
1 #ifndef _UTIME_H_
2 #define _UTIME_H_
4 /*
5 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: ANSI-C header file utime.h
9 Lang: english
12 #include <aros/types/time_t.h>
14 struct utimbuf {
15 time_t actime; /* Access time */
16 time_t modtime; /* Modification time */
19 __BEGIN_DECLS
20 int utime(const char *filename, struct utimbuf *buf);
21 __END_DECLS
23 #endif /* !_UTIME_H_ */