plan9port/src/libthread/memsetd.c

9 lines
114 B
C
Raw Normal View History

2003-09-30 17:47:42 +00:00
#include "threadimpl.h"
#include <string.h>
void
_threaddebugmemset(void *v, int c, int n)
{
memset(v, c, n);
}