[Python-checkins] CVS: python/dist/src/Include pyport.h,2.24,2.25

Thomas Wouters twouters@users.sourceforge.net
Sun, 21 Jan 2001 15:34:14 -0800


Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv9601/Include

Modified Files:
	pyport.h 
Log Message:

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 :-)



Index: pyport.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pyport.h,v
retrieving revision 2.24
retrieving revision 2.25
diff -C2 -r2.24 -r2.25
*** pyport.h	2001/01/18 03:03:16	2.24
--- pyport.h	2001/01/21 23:34:12	2.25
***************
*** 267,270 ****
--- 267,273 ----
  extern int fsync(int fd);
  
+ /* From Modules/nismodule.c */
+ CLIENT *clnt_create();
+ 
  #endif /* 0 */