xref: /csrg-svn/include/utime.h (revision 61070)
145146Sbostic /*-
2*61070Sbostic  * Copyright (c) 1990, 1993
3*61070Sbostic  *	The Regents of the University of California.  All rights reserved.
445146Sbostic  *
545146Sbostic  * %sccs.include.redist.c%
645146Sbostic  *
7*61070Sbostic  *	@(#)utime.h	8.1 (Berkeley) 06/02/93
845146Sbostic  */
945146Sbostic 
1047786Sbostic #ifndef	_UTIME_H_
1147786Sbostic #define	_UTIME_H_
1247786Sbostic 
1345146Sbostic struct utimbuf {
1445146Sbostic 	time_t actime;		/* Access time */
1545146Sbostic 	time_t modtime;		/* Modification time */
1645146Sbostic };
1745146Sbostic 
1846281Sbostic #include <sys/cdefs.h>
1946281Sbostic 
2046281Sbostic __BEGIN_DECLS
2146581Sdonn int utime __P((const char *, const struct utimbuf *));
2246281Sbostic __END_DECLS
2347786Sbostic 
2447786Sbostic #endif /* !_UTIME_H_ */
25