xref: /csrg-svn/lib/libc/gen/utime.c (revision 21335)
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 #ifndef lint
8 static char sccsid[] = "@(#)utime.c	5.1 (Berkeley) 05/30/85";
9 #endif 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