summaryrefslogtreecommitdiff
path: root/doio.c
diff options
context:
space:
mode:
authorLarry Wall <lwall@netlabs.com>1992-06-11 08:21:11 +0000
committerLarry Wall <lwall@netlabs.com>1992-06-11 08:21:11 +0000
commitfaf8582f0c418b57fd71e105da84edbb3177fa0c (patch)
tree362f6aa8bbc6e5d971e30ed808182176ae405c8e /doio.c
parent2f3197b3c480b4120c210442c74a59d064d932c9 (diff)
downloadperl-faf8582f0c418b57fd71e105da84edbb3177fa0c.tar.gz
perl 4.0 patch 34: (combined patch)
Here's the typical cleanup patch that follows any large set of patches. My testing organization is either too large or too small, depending on how you look at it, sigh...
Diffstat (limited to 'doio.c')
-rw-r--r--doio.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/doio.c b/doio.c
index aa85abe8d2..dd3b616c6c 100644
--- a/doio.c
+++ b/doio.c
@@ -1,4 +1,4 @@
-/* $RCSfile: doio.c,v $$Revision: 4.0.1.5 $$Date: 92/06/08 13:00:21 $
+/* $RCSfile: doio.c,v $$Revision: 4.0.1.6 $$Date: 92/06/11 21:08:16 $
*
* Copyright (c) 1991, Larry Wall
*
@@ -6,6 +6,9 @@
* License or the Artistic License, as specified in the README file.
*
* $Log: doio.c,v $
+ * Revision 4.0.1.6 92/06/11 21:08:16 lwall
+ * patch34: some systems don't declare h_errno extern in header files
+ *
* Revision 4.0.1.5 92/06/08 13:00:21 lwall
* patch20: some machines don't define ENOTSOCK in errno.h
* patch20: new warnings for failed use of stat operators on filenames with \n
@@ -64,6 +67,10 @@
#endif
#endif
+#ifdef HOST_NOT_FOUND
+extern int h_errno;
+#endif
+
#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
#include <sys/ipc.h>
#ifdef HAS_MSG