Imported Upstream version 302
[ckermit.git] / ckucon.c
index 776682d..50ceb7e 100644 (file)
--- a/ckucon.c
+++ b/ckucon.c
@@ -1,13 +1,13 @@
 #include "ckcsym.h"
 
-char *connv = "CONNECT Command for UNIX:fork(), 9.0.116, 1 Mar 2010";
+char *connv = "CONNECT Command for UNIX:fork(), 9.0.117, 14 Jul 2011";
 
 /*  C K U C O N  --  Terminal connection to remote system, for UNIX  */
 /*
   Author: Frank da Cruz <fdc@columbia.edu>,
   Columbia University Academic Information Systems, New York City.
 
-  Copyright (C) 1985, 2010,
+  Copyright (C) 1985, 2011,
     Trustees of Columbia University in the City of New York.
     All rights reserved.  See the C-Kermit COPYING.TXT file or the
     copyright text in the ckcmai.c module for disclaimer and permissions.
@@ -43,7 +43,14 @@ _PROTOTYP( static VOID concld, (void) );
 #endif /* NEXT */
 
 #include <signal.h>                    /* Signals */
-#include <errno.h>                     /* Error numbers */
+
+#ifndef HPUXPRE65
+#include <errno.h>                     /* Error number symbols */
+#else
+#ifndef ERRNO_INCLUDED
+#include <errno.h>                     /* Error number symbols */
+#endif /* ERRNO_INCLUDED */
+#endif /* HPUXPRE65 */
 
 #ifdef ZILOG                           /* Longjumps */
 #include <setret.h>