add whiteouts
[unix-history] / usr / src / include / utime.h
CommitLineData
a228c6b0 1/*-
d6c17d94
KB
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
a228c6b0
KB
4 *
5 * %sccs.include.redist.c%
6 *
d6c17d94 7 * @(#)utime.h 8.1 (Berkeley) %G%
a228c6b0
KB
8 */
9
b890cc7a
KB
10#ifndef _UTIME_H_
11#define _UTIME_H_
12
a228c6b0
KB
13struct utimbuf {
14 time_t actime; /* Access time */
15 time_t modtime; /* Modification time */
16};
17
91befe9c
KB
18#include <sys/cdefs.h>
19
20__BEGIN_DECLS
da04435b 21int utime __P((const char *, const struct utimbuf *));
91befe9c 22__END_DECLS
b890cc7a
KB
23
24#endif /* !_UTIME_H_ */