diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2010-12-03 19:44:59 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2010-12-03 19:44:59 +0000 |
commit | 2349db6097e5640bec2b9ff23b763fe2d6c67ed1 (patch) | |
tree | 3c49f3b7ad09100dccc1fd4aa1873b903a98ac38 /usr.bin/rcs/co.c | |
parent | bed0f41cd9ce2bd6be5751a952fce38f6fdca95c (diff) |
add missing header needed by futimes()
ok stsp@
Diffstat (limited to 'usr.bin/rcs/co.c')
-rw-r--r-- | usr.bin/rcs/co.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/rcs/co.c b/usr.bin/rcs/co.c index 8e674303d60..56bebd9707d 100644 --- a/usr.bin/rcs/co.c +++ b/usr.bin/rcs/co.c @@ -1,4 +1,4 @@ -/* $OpenBSD: co.c,v 1.115 2010/10/20 19:53:53 tobias Exp $ */ +/* $OpenBSD: co.c,v 1.116 2010/12/03 19:44:58 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> |