Blob


1 #include "threadimpl.h"
3 void*
4 _threadstkalloc(int n)
5 {
6 return malloc(n);
7 }
9 void
10 _threadstkfree(void *v, int n)
11 {
12 free(v);
13 }