fix non-static dummy function that slipped in with locale implementation

This commit is contained in:
Rich Felker 2014-09-06 08:40:20 -04:00
parent 7ff804269b
commit 86876dbec5
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}