summaryrefslogtreecommitdiff
path: root/graphics/dx/patches/patch-aa
blob: 5362909676ab7ffd5c1028fe734b2e50a4be98c9 (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-aa,v 1.2 2002/02/05 22:23:32 drochner Exp $

--- src/exec/libdx/message.c.orig	Tue Feb  5 12:56:40 2002
+++ src/exec/libdx/message.c	Tue Feb  5 13:05:08 2002
@@ -21,20 +21,18 @@
 #include <stdlib.h>
 #include <string.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_IO_H)