From 40be4d1cd52e73173064b0d35544cce937a6ba49 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 4 Sep 1996 22:47:09 +0000 Subject: [PATCH] allow vxWorks 5.1 and gnu win 32 --- src/gdd/gdd.h | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/src/gdd/gdd.h b/src/gdd/gdd.h index 6dbf6addf..845e30591 100644 --- a/src/gdd/gdd.h +++ b/src/gdd/gdd.h @@ -8,6 +8,9 @@ * $Id$ * * $Log$ + * Revision 1.12 1996/08/27 13:05:06 jbk + * final repairs to string functions, put() functions, and error code printing + * * Revision 1.11 1996/08/22 21:05:41 jbk * More fixes to make strings and fixed string work better. * @@ -67,12 +70,17 @@ #include #include #include -#ifndef vxWorks -#include -#include -#include -#else -#include + +#if defined(WIN32) +# include +#elif defined(vxWorks) +# include +# include // for timespec under v51 vxWorks +#elif defined(UNIX) + // hopefully a posix compliant OS +# include +# include +# include #endif // strdup is not defined under POSIX