diff options
author | Thomas Wouters <thomas@python.org> | 2001-02-15 08:46:56 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2001-02-15 08:46:56 (GMT) |
commit | 0f954a4256c3122918b9ef0d17f587a0003ee45e (patch) | |
tree | 46718812748620a51f1c0dd856f86a097776bcbb /Modules | |
parent | 523ec5709b9893995a8630d340a512786d9f57bf (diff) | |
download | cpython-0f954a4256c3122918b9ef0d17f587a0003ee45e.zip cpython-0f954a4256c3122918b9ef0d17f587a0003ee45e.tar.gz cpython-0f954a4256c3122918b9ef0d17f587a0003ee45e.tar.bz2 |
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.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index ef0a42a..19d62b8 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 |