source: azure_iot_hub/trunk/musl-1.1.18/src/locale/__lctrans.c@ 389

Last change on this file since 389 was 389, checked in by coas-nagasima, 5 years ago

ビルドが通るよう更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 409 bytes
Line 
1#include <locale.h>
2#include "locale_impl.h"
3#include "libc.h"
4
5static const char *dummy(const char *msg, const struct __locale_map *lm)
6{
7 return msg;
8}
9
10weak_alias(dummy, __lctrans_impl);
11
12const char *__lctrans(const char *msg, const struct __locale_map *lm)
13{
14 return __lctrans_impl(msg, lm);
15}
16
17const char *__lctrans_cur(const char *msg)
18{
19 return __lctrans_impl(msg, CURRENT_LOCALE->cat[LC_MESSAGES]);
20}
Note: See TracBrowser for help on using the repository browser.