1: /*
2: * Copyright (c) 1980 Regents of the University of California.
3: * All rights reserved. The Berkeley software License Agreement
4: * specifies the terms and conditions for redistribution.
5: */
6:
7: #if defined(LIBC_SCCS) && !defined(lint)
8: static char sccsid[] = "@(#)utime.c 5.2 (Berkeley) 3/9/86";
9: #endif LIBC_SCCS and not lint
10:
11: #include <sys/time.h>
12: #include <sys/types.h>
13: /*
14: * Backwards compatible utime.
15: */
16:
17: utime(name, otv)
18: char *name;
19: time_t otv[];
20: {
21: struct timeval tv[2];
22:
23: tv[0].tv_sec = otv[0]; tv[0].tv_usec = 0;
24: tv[1].tv_sec = otv[1]; tv[1].tv_usec = 0;
25: return (utimes(name, tv));
26: }
Defined functions
utime
defined in line
17; used 10 times
Defined variables
sccsid
defined in line
8;
never used