xref: /original-bsd/lib/libc/gen/utime.c (revision 2301fdfb)
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) 03/09/86";
9 #endif LIBC_SCCS and not lint
10 
11 #include <sys/time.h>
12 /*
13  * Backwards compatible utime.
14  */
15 
16 utime(name, otv)
17 	char *name;
18 	int otv[];
19 {
20 	struct timeval tv[2];
21 
22 	tv[0].tv_sec = otv[0]; tv[0].tv_usec = 0;
23 	tv[1].tv_sec = otv[1]; tv[1].tv_usec = 0;
24 	return (utimes(name, tv));
25 }
26