aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/memset.c
blob: dd74fb6cc87c58f2814dcd4f3d9a445274f0e771 (plain)
1
2
3
4
5
6
7
8
#include "threadimpl.h"
#include <string.h>

void
_threadmemset(void *v, int c, int n)
{
	memset(v, c, n);
}