plan9port/src/libthread/memsetd.c
2003-09-30 17:47:42 +00:00

8 lines
114 B
C

#include "threadimpl.h"
#include <string.h>
void
_threaddebugmemset(void *v, int c, int n)
{
memset(v, c, n);
}