written by Kirk McKusick and Sam Leffler; add Berkeley specific header
[unix-history] / usr / src / lib / libc / gen / utime.c
CommitLineData
bb0cfa24
DF
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
2ce81398
DS
7#if defined(LIBC_SCCS) && !defined(lint)
8static char sccsid[] = "@(#)utime.c 5.2 (Berkeley) %G%";
9#endif LIBC_SCCS and not lint
d322f548 10
9bfbc81c 11#include <sys/time.h>
d322f548
SL
12/*
13 * Backwards compatible utime.
14 */
15
16utime(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}