diff options
Diffstat (limited to 'src/wchar/wcsncpy_s.c')
-rw-r--r-- | src/wchar/wcsncpy_s.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/wchar/wcsncpy_s.c b/src/wchar/wcsncpy_s.c new file mode 100644 index 00000000..4aba2220 --- /dev/null +++ b/src/wchar/wcsncpy_s.c @@ -0,0 +1,10 @@ +#include "wchar.h" + +errno_t wcsncpy_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict s2, rsize_t n) +{ + __C_EXT(1, 201112L); +} + +/* +CEXT1(201112) +*/ |