Commit 7f58e2ec authored by Guido van Rossum's avatar Guido van Rossum

It's better to test for __hpux rather than __hppa, and hpux or hppa is

unnecessary.  Sez edg@SF
parent 38178fd9
...@@ -703,7 +703,7 @@ posix_fsync(PyObject *self, PyObject *args) ...@@ -703,7 +703,7 @@ posix_fsync(PyObject *self, PyObject *args)
#ifdef HAVE_FDATASYNC #ifdef HAVE_FDATASYNC
#if defined(__hppa) || defined(hppa) #ifdef __hpux
extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */ extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment