From f2f3c5ba7374be95aba4f8f35bccd3c4c067e625 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 30 Dec 2004 00:20:15 +0000 Subject: [PATCH] Include unistd.h always --- client/client.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/client.c b/client/client.c index 173db4e..51bc87c 100644 --- a/client/client.c +++ b/client/client.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2004, Index Data * See the file LICENSE for details. * - * $Id: client.c,v 1.262 2004-12-21 20:25:39 adam Exp $ + * $Id: client.c,v 1.263 2004-12-30 00:20:15 adam Exp $ */ #include @@ -32,6 +32,8 @@ #include #define S_ISREG(x) (x & _S_IFREG) #define S_ISDIR(x) (x & _S_IFDIR) +#else +#include #endif #include @@ -55,7 +57,6 @@ #if HAVE_READLINE_READLINE_H #include -#include #endif #if HAVE_READLINE_HISTORY_H #include -- 1.7.10.4