From: Daniel Stenberg Date: Tue, 5 Oct 2004 06:49:09 +0000 (+0000) Subject: let our basename() be static X-Git-Tag: curl-7_12_2~56 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d5dd8e0fdc780777998c068dee4fd4ce3e5dffe0;p=thirdparty%2Fcurl.git let our basename() be static --- diff --git a/lib/formdata.c b/lib/formdata.c index e03d75aea8..91ad34c0a9 100644 --- a/lib/formdata.c +++ b/lib/formdata.c @@ -931,7 +931,7 @@ void curl_formfree(struct curl_httppost *form) required to be reentrant is not required to be thread-safe. */ -char *basename(char *path) +static char *basename(char *path) { /* Ignore all the details above for now and make a quick and simple implementaion here */