Add extern decl for fsync() for SunOS 4.x.
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 pclose();
 extern int lstat();
 extern int symlink();
+extern int fsync();
 #else /* !HAVE_UNISTD_H */
 #if defined(PYCC_VACPP)
 extern int mkdir Py_PROTO((char *));