blob: 2df1baeaabc619cde96a6129d9687c83f1e99cb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
$NetBSD: patch-ae,v 1.4 2005/11/10 14:29:01 itohy Exp $
--- fig2dev/fig2dev.h.orig Wed Jul 16 01:21:12 2003
+++ fig2dev/fig2dev.h Wed Nov 9 21:52:22 2005
@@ -213,13 +213,14 @@
#endif /* MAXPATHLEN */
#endif /* PATH_MAX */
-#if ( !defined(__NetBSD__) && !defined(__DARWIN__))
+#if ( !defined(__NetBSD__) && !defined(__DARWIN__) && !defined(__FreeBSD__) &&!defined(__DragonFly__))
extern int sys_nerr, errno;
#endif
#if ( !(defined(BSD) && (BSD >= 199306)) && !defined(__NetBSD__) && \
!defined(__GNU_LIBRARY__) && !defined(__FreeBSD__) && \
- !defined(__GLIBC__) && !defined(__CYGWIN__) && !defined(__DARWIN__))
+ !defined(__GLIBC__) && !defined(__CYGWIN__) && \
+ !defined(__DARWIN__) && !defined(__DragonFly__))
extern char *sys_errlist[];
#endif
|