From dfba741457cc81eb2ed3a9d4c074fbad74aa3249 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 6 Mar 2006 20:47:33 +0000 Subject: Robert P. Day removed 8 gazillion occurrences of "extern" on function definitions. (That should only be on prototypes.) --- libbb/xreadlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbb/xreadlink.c') diff --git a/libbb/xreadlink.c b/libbb/xreadlink.c index b3e3eda2b..1bc166bbc 100644 --- a/libbb/xreadlink.c +++ b/libbb/xreadlink.c @@ -13,7 +13,7 @@ #include #include "libbb.h" -extern char *xreadlink(const char *path) +char *xreadlink(const char *path) { static const int GROWBY = 80; /* how large we will grow strings by */ -- cgit v1.2.3