document w (wildcard MX) and k (checkpoint interval) options
[unix-history] / usr / src / include / utime.h
CommitLineData
a228c6b0
KB
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 *
b890cc7a 7 * @(#)utime.h 5.4 (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_ */