diff options
| author | kleink <kleink@NetBSD.org> | 2006-01-26 11:13:42 +0000 |
|---|---|---|
| committer | kleink <kleink@NetBSD.org> | 2006-01-26 11:13:42 +0000 |
| commit | 9cbc15a5b42759ea0d103dc6c77f25e943f9a7e1 (patch) | |
| tree | cbefd9eb68cc5dcf18167d91be1ccbcc3586d65b /lib/libc/string | |
| parent | d0f63b35471724b58b0c16272f297900b8e4f1b1 (diff) | |
Must include "namespace.h" for strerror_r()'s internal name.
Diffstat (limited to 'lib/libc/string')
| -rw-r--r-- | lib/libc/string/strerror.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/string/strerror.c b/lib/libc/string/strerror.c index 9d3be4ad42a..99e2bd18f61 100644 --- a/lib/libc/string/strerror.c +++ b/lib/libc/string/strerror.c @@ -1,4 +1,4 @@ -/* $NetBSD: strerror.c,v 1.13 2005/07/28 16:26:29 christos Exp $ */ +/* $NetBSD: strerror.c,v 1.14 2006/01/26 11:13:42 kleink Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. @@ -34,10 +34,11 @@ #if 0 static char *sccsid = "@(#)strerror.c 5.6 (Berkeley) 5/4/91"; #else -__RCSID("$NetBSD: strerror.c,v 1.13 2005/07/28 16:26:29 christos Exp $"); +__RCSID("$NetBSD: strerror.c,v 1.14 2006/01/26 11:13:42 kleink Exp $"); #endif #endif /* LIBC_SCCS and not lint */ +#include "namespace.h" #include <string.h> #include <limits.h> #include <errno.h> |
