[Python-checkins] CVS: python/dist/src/Modules posixmodule.c,2.183,2.184

Thomas Wouters twouters@users.sourceforge.net
Thu, 15 Feb 2001 00:46:59 -0800


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

Modified Files:
	posixmodule.c 
Log Message:

Add a few more missing prototypes to the SunOS 4.1.4 section (no SF
bugreport, just an IRC one by Marion Delgado.) These prototypes are
necessary because the functions are tossed around, not just called.



Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.183
retrieving revision 2.184
diff -C2 -r2.183 -r2.184
*** posixmodule.c	2001/01/31 07:30:29	2.183
--- posixmodule.c	2001/02/15 08:46:56	2.184
***************
*** 114,117 ****
--- 114,120 ----
  extern int pclose(FILE *);
  extern int fclose(FILE *);
+ extern int fsync(int);
+ extern int lstat(const char *, struct stat *);
+ extern int symlink(const char *, const char *);
  #endif