summaryrefslogtreecommitdiffstats
path: root/Include/pyport.h
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2001-01-21 23:34:12 (GMT)
committerThomas Wouters <thomas@python.org>2001-01-21 23:34:12 (GMT)
commite75e6d06d2e94551ceb0c2bf8219bce9621f46d0 (patch)
tree7b30ecbc9c13620e59bbd30c976dc550b0305b27 /Include/pyport.h
parentb2dfd73bdce7552e671520a14e4b5a72dc02ce12 (diff)
downloadcpython-e75e6d06d2e94551ceb0c2bf8219bce9621f46d0.zip
cpython-e75e6d06d2e94551ceb0c2bf8219bce9621f46d0.tar.gz
cpython-e75e6d06d2e94551ceb0c2bf8219bce9621f46d0.tar.bz2
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/pyport.h')
-rw-r--r--Include/pyport.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/pyport.h b/Include/pyport.h
index 852efb8..1bd1873 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 */