summaryrefslogtreecommitdiff
path: root/dmake
diff options
context:
space:
mode:
authorThomas Klausner <wiz@NetBSD.org>2010-12-16 22:36:27 +0100
committerThomas Klausner <wiz@NetBSD.org>2010-12-16 22:40:05 +0100
commit32699c99d7789ed0bdc31696e0d6dc0bc3d85d80 (patch)
treed55f0557f57afc9e34c3a7e3658752dba4ac5a3c /dmake
parented401d017cf4d1c67dbd9455f54648bd512be023 (diff)
Handle NetBSD like the other BSDs in more cases.
Diffstat (limited to 'dmake')
-rw-r--r--dmake/unix/runargv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmake/unix/runargv.c b/dmake/unix/runargv.c
index 4be342bbb273..95bfc6115456 100644
--- a/dmake/unix/runargv.c
+++ b/dmake/unix/runargv.c
@@ -438,7 +438,7 @@ private_strerror (errnum)
int errnum;
{
#ifndef __APPLE__
-# if defined(arm32) || defined(linux) || defined(__FreeBSD__) || defined(__OpenBSD__)
+# if defined(arm32) || defined(linux) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
extern const char * const sys_errlist[];
# else
extern char *sys_errlist[];