From 86876dbec55d9416859bbbbc9850b1ec81b6dbea Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 6 Sep 2014 08:40:20 -0400 Subject: fix non-static dummy function that slipped in with locale implementation --- src/locale/__lctrans.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.1