1/*
2 * Copyright (c) 2004-2005, 2007 Todd C. Miller <Todd.Miller@courtesan.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <config.h>
18
19#include <sys/types.h>
20#include <sys/time.h>
21#include <stdio.h>
22#if TIME_WITH_SYS_TIME
23# include <time.h>
24#endif
25
26#ifdef HAVE_UTIME_H
27# include <utime.h>
28#else
29# include "emul/utime.h"
30#endif
31
32#include "missing.h"
33
34#ifndef HAVE_UTIMES
35/*
36 * Emulate utimes() via utime()
37 */
38int
39utimes(file, times)
40    const char *file;
41    const struct timeval *times;
42{
43    if (times != NULL) {
44	struct utimbuf utb;
45
46	utb.actime = (time_t)(times[0].tv_sec + times[0].tv_usec / 1000000);
47	utb.modtime = (time_t)(times[1].tv_sec + times[1].tv_usec / 1000000);
48	return utime(file, &utb);
49    } else
50	return utime(file, NULL);
51}
52#endif /* !HAVE_UTIMES */
53
54#ifdef HAVE_FUTIME
55/*
56 * Emulate futimes() via futime()
57 */
58int
59futimes(fd, times)
60    int fd;
61    const struct timeval *times;
62{
63    if (times != NULL) {
64	struct utimbuf utb;
65
66	utb.actime = (time_t)(times[0].tv_sec + times[0].tv_usec / 1000000);
67	utb.modtime = (time_t)(times[1].tv_sec + times[1].tv_usec / 1000000);
68	return futime(fd, &utb);
69    } else
70	return futime(fd, NULL);
71}
72#endif /* HAVE_FUTIME */
73