From 31642d75e1725be5f27ce9cfbe477689ec8bfb3e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 14 Mar 2006 21:45:38 +0000 Subject: More "extern" removals from Robert P. Day --- libbb/xfuncs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libbb/xfuncs.c') 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