diff options
author | 2010-12-06 22:50:34 +0000 | |
---|---|---|
committer | 2010-12-06 22:50:34 +0000 | |
commit | 80821091ffebbbc03089974de44de4c1014aa648 (patch) | |
tree | ba7239ec33248773975748ed1e6ada41a49e9edb | |
parent | add missing header to properly use SIG* definitions (diff) | |
download | wireguard-openbsd-80821091ffebbbc03089974de44de4c1014aa648.tar.xz wireguard-openbsd-80821091ffebbbc03089974de44de4c1014aa648.zip |
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> |