mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
It's better to test for __hpux rather than __hppa, and hpux or hppa is
unnecessary. Sez edg@SF
This commit is contained in:
parent
38178fd951
commit
7f58e2ec76
1 changed files with 1 additions and 1 deletions
|
@ -703,7 +703,7 @@ posix_fsync(PyObject *self, PyObject *args)
|
|||
|
||||
#ifdef HAVE_FDATASYNC
|
||||
|
||||
#if defined(__hppa) || defined(hppa)
|
||||
#ifdef __hpux
|
||||
extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue