From: Rich Felker Date: Sat, 6 Sep 2014 12:40:20 +0000 (-0400) Subject: fix non-static dummy function that slipped in with locale implementation X-Git-Tag: v1.1.5~32 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=86876dbec55d9416859bbbbc9850b1ec81b6dbea;p=oweals%2Fmusl.git fix non-static dummy function that slipped in with locale implementation --- diff --git a/src/locale/__lctrans.c b/src/locale/__lctrans.c index 2769c084..15994c57 100644 --- a/src/locale/__lctrans.c +++ b/src/locale/__lctrans.c @@ -2,7 +2,7 @@ #include "locale_impl.h" #include "libc.h" -const char *dummy(const char *msg, const struct __locale_map *lm) +static const char *dummy(const char *msg, const struct __locale_map *lm) { return msg; }