Initial revision
This commit is contained in:
parent
ed7c8e8d02
commit
76193d7cb0
223 changed files with 32479 additions and 0 deletions
8
src/libthread/memset.c
Normal file
8
src/libthread/memset.c
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include "threadimpl.h"
|
||||
#include <string.h>
|
||||
|
||||
void
|
||||
_threadmemset(void *v, int c, int n)
|
||||
{
|
||||
memset(v, c, n);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue