add a missing section header table index conversion
[tangerine.git] / compiler / clib / include / utime.h
blobaca5a5b3bc89cdf8366056354667bd7b297e60a0
1 #ifndef _UTIME_H_
2 #define _UTIME_H_
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: ANSI-C header file utime.h
9 Lang: english
12 #include <sys/_types.h>
13 #include <sys/cdefs.h>
15 #ifndef __AROS_TIME_T_DECLARED
16 #define __AROS_TIME_T_DECLARED
17 typedef __time_t time_t;
18 #endif
20 struct utimbuf {
21 time_t actime; /* Access time */
22 time_t modtime; /* Modification time */
25 __BEGIN_DECLS
26 int utime(const char *filename, struct utimbuf *buf);
27 __END_DECLS
29 #endif /* !_UTIME_H_ */