Sign in
◑
Theme
plan9port
/
plan9
/
bf27f5872198e789df90c04b7cdac6bf73a612d9
/
.
/
src
/
libthread
/
memset.c
blob: dd74fb6cc87c58f2814dcd4f3d9a445274f0e771 [
file
]
#include
"threadimpl.h"
#include
<string.h>
void
_threadmemset
(
void
*
v
,
int
c
,
int
n
)
{
memset
(
v
,
c
,
n
);
}