aboutsummaryrefslogtreecommitdiffstats
path: root/enwcsndup.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-11-29 21:25:44 +0100
committerMattias Andrée <maandree@kth.se>2018-11-29 21:25:44 +0100
commita2fc726a6225ceb94dba367cf5acfe597ce11d74 (patch)
tree7e6f705a9160b9bdad8f32463284009085dc7254 /enwcsndup.c
parentm (diff)
downloadlibsimple-a2fc726a6225ceb94dba367cf5acfe597ce11d74.tar.gz
libsimple-a2fc726a6225ceb94dba367cf5acfe597ce11d74.tar.bz2
libsimple-a2fc726a6225ceb94dba367cf5acfe597ce11d74.tar.xz
A bunch of stuff
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'enwcsndup.c')
-rw-r--r--enwcsndup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enwcsndup.c b/enwcsndup.c
index 551311d..f08da34 100644
--- a/enwcsndup.c
+++ b/enwcsndup.c
@@ -6,7 +6,7 @@
wchar_t *
libsimple_enwcsndup(int status, const wchar_t *s, size_t n) /* TODO test */
{
- wchar_t *ret = wcsndup(s, n);
+ wchar_t *ret = libsimple_wcsndup(s, n);
if (!ret)
enprintf(status, "wcsndup:");
return ret;