diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-03 15:08:05 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-03 15:08:05 +0000 |
commit | baccbff8cd9cb78f56104f27ae370dfb03c75b9e (patch) | |
tree | 5f940ffbffc670b00421d1c722871bf65d18cf1f /usr.bin/cvs/file.c | |
parent | 60aa1b1e41d7ddb471c5292340aac207958956ea (diff) |
(f)utimes takes sys/time.h
Diffstat (limited to 'usr.bin/cvs/file.c')
-rw-r--r-- | usr.bin/cvs/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c index 4203733c94e..c9d72fe518c 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.212 2008/01/31 21:56:34 tobias Exp $ */ +/* $OpenBSD: file.c,v 1.213 2008/02/03 15:08:04 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -28,6 +28,7 @@ #include <sys/types.h> #include <sys/mman.h> #include <sys/stat.h> +#include <sys/time.h> #include <errno.h> #include <fcntl.h> |