scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

wmemmove.c (165B)


      1 #include <string.h>
      2 #include <wchar.h>
      3 
      4 #undef wmemmove
      5 
      6 wchar_t *
      7 wmemmove(wchar_t *d, const wchar_t *s, size_t n)
      8 {
      9 	return memmove(d, s,  n * sizeof(wchar_t));
     10 }