diff options
Diffstat (limited to 'src/uchar/c16rtomb.c')
| -rw-r--r-- | src/uchar/c16rtomb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/uchar/c16rtomb.c b/src/uchar/c16rtomb.c index 1bd1906a..ab1444b3 100644 --- a/src/uchar/c16rtomb.c +++ b/src/uchar/c16rtomb.c @@ -1,15 +1,15 @@ -#if 0 - #include <uchar.h> +#include "_safety.h" size_t c16rtomb(char * restrict s, char16_t c16, mbstate_t * restrict ps) { + SIGNAL_SAFE(0); + + (void)s; (void)c16; (void)ps; + return 0; } /* STDC(201112) */ - - -#endif |
