diff options
Diffstat (limited to 'src/locale/__lctrans.c')
-rw-r--r-- | src/locale/__lctrans.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/locale/__lctrans.c b/src/locale/__lctrans.c new file mode 100644 index 00000000..2769c084 --- /dev/null +++ b/src/locale/__lctrans.c @@ -0,0 +1,20 @@ +#include <locale.h> +#include "locale_impl.h" +#include "libc.h" + +const char *dummy(const char *msg, const struct __locale_map *lm) +{ + return msg; +} + +weak_alias(dummy, __lctrans_impl); + +const char *__lctrans(const char *msg, const struct __locale_map *lm) +{ + return __lctrans_impl(msg, lm); +} + +const char *__lctrans_cur(const char *msg) +{ + return __lctrans_impl(msg, CURRENT_LOCALE->cat[LC_MESSAGES-2]); +} |