From 24fce4d29cbc57dd16e64d5e0b128d49c3da31ab Mon Sep 17 00:00:00 2001 From: landley Date: Tue, 14 Mar 2006 21:45:38 +0000 Subject: More "extern" removals from Robert P. Day git-svn-id: svn://busybox.net/trunk/busybox@14541 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- libbb/xfuncs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libbb') diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 4114090de..9ee4fcd65 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -57,7 +57,8 @@ void *xcalloc(size_t nmemb, size_t size) #endif /* DMALLOC */ #ifdef L_xstrdup -extern char * bb_xstrdup (const char *s) { +char * bb_xstrdup (const char *s) +{ char *t; if (s == NULL) @@ -73,7 +74,8 @@ extern char * bb_xstrdup (const char *s) { #endif #ifdef L_xstrndup -extern char * bb_xstrndup (const char *s, int n) { +char * bb_xstrndup (const char *s, int n) +{ char *t; if (s == NULL) -- cgit v1.2.3-55-g6feb