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/buf.c | |
parent | 60aa1b1e41d7ddb471c5292340aac207958956ea (diff) |
(f)utimes takes sys/time.h
Diffstat (limited to 'usr.bin/cvs/buf.c')
-rw-r--r-- | usr.bin/cvs/buf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/buf.c b/usr.bin/cvs/buf.c index 578d17acac9..12479f8acd7 100644 --- a/usr.bin/cvs/buf.c +++ b/usr.bin/cvs/buf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: buf.c,v 1.66 2007/09/25 10:02:50 chl Exp $ */ +/* $OpenBSD: buf.c,v 1.67 2008/02/03 15:08:04 tobias Exp $ */ /* * Copyright (c) 2003 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -25,6 +25,7 @@ */ #include <sys/stat.h> +#include <sys/time.h> #include <errno.h> #include <fcntl.h> |