summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-10 15:17:08 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-10 15:17:08 (GMT)
commitfb4130d1f1aed9e0eabba30b1b672f583cef3a78 (patch)
tree63160c01b8f31fb8307653a487545ea251714580 /Modules/socketmodule.c
parent55db515a51468bb2f1ca2a61c9756dea88b79d58 (diff)
downloadcpython-fb4130d1f1aed9e0eabba30b1b672f583cef3a78.zip
cpython-fb4130d1f1aed9e0eabba30b1b672f583cef3a78.tar.gz
cpython-fb4130d1f1aed9e0eabba30b1b672f583cef3a78.tar.bz2
Added extern decl for gethostname() to keep gcc -Wall happy.
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r--Modules/socketmodule.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 3e510fe..6c72539 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -89,6 +89,10 @@ Socket methods:
#include <unistd.h>
#endif
+#ifndef MS_WINDOWS
+extern int gethostname(); /* For Solaris, at least */
+#endif
+
#include <sys/types.h>
#include "mytime.h"