From 2fa64f1f1d968b5aae13af1ea11946916e41817b Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 28 Feb 2003 15:34:21 +0000 Subject: [PATCH] Add include of unistd.h for sleep(3). --- test/testclient.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/testclient.c b/test/testclient.c index 1e9762f..7fddccd 100644 --- a/test/testclient.c +++ b/test/testclient.c @@ -1,11 +1,16 @@ /* - * $Id: testclient.c,v 1.9 2003-01-13 22:28:18 adam Exp $ + * $Id: testclient.c,v 1.10 2003-02-28 15:34:21 adam Exp $ * * Z39.50 client specifically for Zebra testing. */ #include #include +#ifdef WIN32 +#else +#include +#endif + #include #include #include -- 1.7.10.4