summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2001-01-21 23:34:12 +0000
committerThomas Wouters <thomas@python.org>2001-01-21 23:34:12 +0000
commit7ba18a865551a468c1ab708d188e03a15b6e5c83 (patch)
tree97603b15b0d76035fb73696c825b1b3bce9d0a7b /Include
parentb6dc9cd681767c373b8eda33c3745c17e7dd21d2 (diff)
downloadcpython-7ba18a865551a468c1ab708d188e03a15b6e5c83.tar.gz
Move declaration of 'clnt_create()' NIS function to pyport.h, as it's
supposed to be declared in system include files (with a proper prototype.) Should be moved to a platform-specific block if anyone finds out which broken platforms need it :-)
Diffstat (limited to 'Include')
-rw-r--r--Include/pyport.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/pyport.h b/Include/pyport.h
index 852efb894f..1bd1873b80 100644
--- a/Include/pyport.h
+++ b/Include/pyport.h
@@ -266,6 +266,9 @@ extern int lstat(const char *, struct stat *);
extern int symlink(const char *, const char *);
extern int fsync(int fd);
+/* From Modules/nismodule.c */
+CLIENT *clnt_create();
+
#endif /* 0 */