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