We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 818f5e2 commit 2e91697Copy full SHA for 2e91697
Modules/posixmodule.c
@@ -236,15 +236,16 @@ corresponding Unix manual entries for more information on calls.");
236
# include <sys/uio.h>
237
#endif
238
239
+#ifdef HAVE_SYS_TYPES_H
240
+/* Should be included before <sys/sysmacros.h> on HP-UX v3 */
241
+# include <sys/types.h>
242
+#endif /* HAVE_SYS_TYPES_H */
243
+
244
#ifdef HAVE_SYS_SYSMACROS_H
245
/* GNU C Library: major(), minor(), makedev() */
246
# include <sys/sysmacros.h>
247
248
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif /* HAVE_SYS_TYPES_H */
-
249
#ifdef HAVE_SYS_STAT_H
250
# include <sys/stat.h>
251
#endif /* HAVE_SYS_STAT_H */
0 commit comments