summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-04-07 15:49:41 (GMT)
committerGuido van Rossum <guido@python.org>1999-04-07 15:49:41 (GMT)
commit8c67e4e8c979c2f38c1fb0614eda2f5a90eba767 (patch)
tree7ade8339bd4c16f84bd7b9db003e46c70584d332 /Modules/posixmodule.c
parent296e14301a7aa23a5ee2bfaa1210af54e594cbbf (diff)
downloadcpython-8c67e4e8c979c2f38c1fb0614eda2f5a90eba767.zip
cpython-8c67e4e8c979c2f38c1fb0614eda2f5a90eba767.tar.gz
cpython-8c67e4e8c979c2f38c1fb0614eda2f5a90eba767.tar.bz2
Add extern decl for fsync() for SunOS 4.x.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 970d951..f3fbd7a 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -155,6 +155,7 @@ extern int rename();
extern int pclose();
extern int lstat();
extern int symlink();
+extern int fsync();
#else /* !HAVE_UNISTD_H */
#if defined(PYCC_VACPP)
extern int mkdir Py_PROTO((char *));