summaryrefslogtreecommitdiff
path: root/graphics/dx/patches/patch-aq
blob: 27afd21cefb354a98245ed7e7b4e71cca141dfc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
$NetBSD: patch-aq,v 1.1 2002/02/05 22:23:33 drochner Exp $

--- src/exec/libdx/edfio.c.orig	Tue Feb  5 13:06:47 2002
+++ src/exec/libdx/edfio.c	Tue Feb  5 13:08:55 2002
@@ -16,20 +16,18 @@
 #include <stdarg.h>
 #include <stdlib.h>
 
-#if defined(HAVE_SYS_ERRNO_H)
-#include <sys/errno.h>
-#endif
-
 #if defined(HAVE_ERRNO_H)
 #include <errno.h>
+#elif defined(HAVE_SYS_ERRNO_H)
+#include <sys/errno.h>
 #endif
 
+#if !defined(HAVE_SYS_ERRLIST)
 #if defined(HAVE__SYS_ERRLIST)
 #define sys_errlist _sys_errlist
-#endif
-
-#if ! (defined(HAVE_SYS_ERRLIST) || defined(HAVE__SYS_ERRLIST))
+#else
 extern char *sys_errlist[];
+#endif
 #endif
 
 #if defined(HAVE_SYS_FILE_H)