aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/stkmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libthread/stkmalloc.c')
-rw-r--r--src/libthread/stkmalloc.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/libthread/stkmalloc.c b/src/libthread/stkmalloc.c
deleted file mode 100644
index 083aea1b..00000000
--- a/src/libthread/stkmalloc.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "threadimpl.h"
-
-void*
-_threadstkalloc(int n)
-{
- return malloc(n);
-}
-
-void
-_threadstkfree(void *v, int n)
-{
- free(v);
-}