From 796854d7e8559a2904dd032904ba28c377e6fdee Mon Sep 17 00:00:00 2001 From: David Schmidt Date: Fri, 21 Sep 2001 23:02:02 +0000 Subject: [PATCH] Cleaning up 2 compiler warnings on OS/2. --- jbsockets.c | 9 ++++++++- jcc.c | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/jbsockets.c b/jbsockets.c index b64c1101..3b36d9db 100644 --- a/jbsockets.c +++ b/jbsockets.c @@ -1,4 +1,4 @@ -const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.16 2001/07/30 22:08:36 jongfoster Exp $"; +const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.17 2001/09/13 20:11:46 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jbsockets.c,v $ @@ -35,6 +35,9 @@ const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.16 2001/07/30 22:08:36 jongfo * * Revisions : * $Log: jbsockets.c,v $ + * Revision 1.17 2001/09/13 20:11:46 jongfoster + * Fixing 2 compiler warnings under Win32 + * * Revision 1.16 2001/07/30 22:08:36 jongfoster * Tidying up #defines: * - All feature #defines are now of the form FEATURE_xxx @@ -125,6 +128,10 @@ const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.16 2001/07/30 22:08:36 jongfo #include #endif +#ifdef __EMX__ +#include /* OS/2/EMX needs a little help with select */ +#endif + #endif #include "project.h" diff --git a/jcc.c b/jcc.c index a89df36c..347f35f4 100644 --- a/jcc.c +++ b/jcc.c @@ -1,4 +1,4 @@ -const char jcc_rcs[] = "$Id: jcc.c,v 1.40 2001/09/16 15:41:45 jongfoster Exp $"; +const char jcc_rcs[] = "$Id: jcc.c,v 1.41 2001/09/16 17:05:14 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jcc.c,v $ @@ -33,6 +33,9 @@ const char jcc_rcs[] = "$Id: jcc.c,v 1.40 2001/09/16 15:41:45 jongfoster Exp $"; * * Revisions : * $Log: jcc.c,v $ + * Revision 1.41 2001/09/16 17:05:14 jongfoster + * Removing unused #include showarg.h + * * Revision 1.40 2001/09/16 15:41:45 jongfoster * Fixing signed/unsigned comparison warning. * @@ -330,6 +333,10 @@ const char jcc_rcs[] = "$Id: jcc.c,v 1.40 2001/09/16 15:41:45 jongfoster Exp $"; # include /* declarations for threads and stuff. */ # endif +# ifdef __EMX__ +# include /* OS/2/EMX needs a little help with select */ +# endif + # ifndef FD_ZERO # include # endif -- 2.39.2