summaryrefslogtreecommitdiff
path: root/Modules/nismodule.c
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 /Modules/nismodule.c
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 'Modules/nismodule.c')
-rw-r--r--Modules/nismodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/nismodule.c b/Modules/nismodule.c
index 36959cf0c1..bcc8e9f968 100644
--- a/Modules/nismodule.c
+++ b/Modules/nismodule.c
@@ -299,7 +299,7 @@ nis_maplist (void)
{
nisresp_maplist *list;
char *dom;
- CLIENT *cl, *clnt_create();
+ CLIENT *cl;
char *server = NULL;
int mapi = 0;
int err;