diff options
author | tjr <tjr@FreeBSD.org> | 2003-01-07 06:55:58 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-01-07 06:55:58 +0000 |
commit | cf3d82de73d7ed2a53e1298e90c3d34290dc5eb5 (patch) | |
tree | 8f16021b5b85315d7e39740735ce2c6275660c28 | |
parent | cce4ee081526f0c5f4c4a92bb8433cccba6cff84 (diff) | |
download | FreeBSD-src-cf3d82de73d7ed2a53e1298e90c3d34290dc5eb5.zip FreeBSD-src-cf3d82de73d7ed2a53e1298e90c3d34290dc5eb5.tar.gz |
#include "namespace.h" to get a prototype for _err().
-rw-r--r-- | lib/libc/gen/stringlist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/gen/stringlist.c b/lib/libc/gen/stringlist.c index f4d4467..ed175ea 100644 --- a/lib/libc/gen/stringlist.c +++ b/lib/libc/gen/stringlist.c @@ -35,11 +35,13 @@ static char *rcsid = "$NetBSD: stringlist.c,v 1.2 1997/01/17 07:26:20 lukem Exp #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include "namespace.h" #include <stdio.h> #include <string.h> #include <err.h> #include <stdlib.h> #include <stringlist.h> +#include "un-namespace.h" #define _SL_CHUNKSIZE 20 |