diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:25:22 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:25:22 +0000 |
commit | 1221daaf062cba1e0d68b96b17965a5179a7e02b (patch) | |
tree | 8b0f1e1772b83578753342c12802b97ac6beb96c | |
parent | 42fa855324aef5a253383e86ba9145e4f335077e (diff) | |
download | uClibc-alpine-1221daaf062cba1e0d68b96b17965a5179a7e02b.tar.bz2 uClibc-alpine-1221daaf062cba1e0d68b96b17965a5179a7e02b.tar.xz |
Copy from trunk.
-rw-r--r-- | libc/string/memset.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/string/memset.c b/libc/string/memset.c new file mode 100644 index 000000000..8a5d69ce8 --- /dev/null +++ b/libc/string/memset.c @@ -0,0 +1,14 @@ +/* + * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org> + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_memset +#define Wmemset __memset + +#include "wstring.c" + +strong_alias(__memset, memset) + +#undef L_memset |