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

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