Deleted Added
full compact
utime.h (93032) utime.h (102337)
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)utime.h 8.1 (Berkeley) 6/2/93
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)utime.h 8.1 (Berkeley) 6/2/93
34 * $FreeBSD: head/include/utime.h 93032 2002-03-23 17:24:55Z imp $
34 * $FreeBSD: head/include/utime.h 102337 2002-08-24 00:11:52Z mike $
35 */
36
37#ifndef _UTIME_H_
38#define _UTIME_H_
39
35 */
36
37#ifndef _UTIME_H_
38#define _UTIME_H_
39
40#include <sys/cdefs.h>
41#include <sys/_types.h>
42
43#ifndef _TIME_T_DECLARED
44typedef __time_t time_t;
45#define _TIME_T_DECLARED
46#endif
47
40struct utimbuf {
41 time_t actime; /* Access time */
42 time_t modtime; /* Modification time */
43};
44
48struct utimbuf {
49 time_t actime; /* Access time */
50 time_t modtime; /* Modification time */
51};
52
45#include <sys/cdefs.h>
46
47__BEGIN_DECLS
48int utime(const char *, const struct utimbuf *);
49__END_DECLS
50
51#endif /* !_UTIME_H_ */
53__BEGIN_DECLS
54int utime(const char *, const struct utimbuf *);
55__END_DECLS
56
57#endif /* !_UTIME_H_ */