diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2007-09-25 11:10:29 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2007-09-25 11:10:29 +0000 |
commit | 09944c345be5ccdda2b0574ccea1f177d2d91e49 (patch) | |
tree | 7df74d483bb9203c9a3383733730c4807f5712a1 /usr.bin/cvs | |
parent | 16fa5d157ddc8fababa719a4be5556491e461233 (diff) |
missing header for strptime
ok joris@
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/entries.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/entries.c b/usr.bin/cvs/entries.c index 0f023aa1ed6..d1ac4eec8c3 100644 --- a/usr.bin/cvs/entries.c +++ b/usr.bin/cvs/entries.c @@ -1,4 +1,4 @@ -/* $OpenBSD: entries.c,v 1.82 2007/09/22 16:01:22 joris Exp $ */ +/* $OpenBSD: entries.c,v 1.83 2007/09/25 11:10:28 chl Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -17,6 +17,7 @@ #include <errno.h> #include <string.h> +#include <time.h> #include <unistd.h> #include "cvs.h" |