xref: /original-bsd/include/utime.h (revision a91856c6)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)utime.h	5.4 (Berkeley) 04/03/91
8  */
9 
10 #ifndef	_UTIME_H_
11 #define	_UTIME_H_
12 
13 struct utimbuf {
14 	time_t actime;		/* Access time */
15 	time_t modtime;		/* Modification time */
16 };
17 
18 #include <sys/cdefs.h>
19 
20 __BEGIN_DECLS
21 int utime __P((const char *, const struct utimbuf *));
22 __END_DECLS
23 
24 #endif /* !_UTIME_H_ */
25