From: Thomas Wouters Date: Thu, 15 Feb 2001 08:46:56 +0000 (+0000) Subject: Add a few more missing prototypes to the SunOS 4.1.4 section (no SF X-Git-Tag: v2.1b1~361 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f954a4256c3122918b9ef0d17f587a0003ee45e;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index ef0a42a7e242..19d62b832c34 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -113,6 +113,9 @@ corresponding Unix manual entries for more information on calls."; extern int rename(const char *, const char *); 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 #ifdef NeXT