diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2010-12-06 22:50:35 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2010-12-06 22:50:35 +0000 |
commit | a423496f78d0cebee4c5c099ad2646d3a78ff800 (patch) | |
tree | a4329130071e61ee8f9deb035005addc268ab96e | |
parent | c854a19df6d8c14eb7b0f1358a81a89ce4b8c27d (diff) |
add missing header needed by futimes()
ok tobias@ nicm@
-rw-r--r-- | usr.bin/rcs/rcsdiff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/rcs/rcsdiff.c b/usr.bin/rcs/rcsdiff.c index d84b4edb31b..a260ad00b3b 100644 --- a/usr.bin/rcs/rcsdiff.c +++ b/usr.bin/rcs/rcsdiff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsdiff.c,v 1.77 2010/07/28 09:07:11 ray Exp $ */ +/* $OpenBSD: rcsdiff.c,v 1.78 2010/12/06 22:50:34 chl Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -25,6 +25,7 @@ */ #include <sys/stat.h> +#include <sys/time.h> #include <err.h> #include <fcntl.h> |