diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/IO.c | 2 | ||||
| -rw-r--r-- | src/Platform/Dummy/Tss.c | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ #include <BH/IO.h> -#include <malloc.h> +#include <stdlib.h> #define BUFFER_SIZE (sizeof(char *)) diff --git a/src/Platform/Dummy/Tss.c b/src/Platform/Dummy/Tss.c index 4b83931..61a0bcd 100644 --- a/src/Platform/Dummy/Tss.c +++ b/src/Platform/Dummy/Tss.c @@ -3,13 +3,14 @@ int BH_TssCreate(BH_GenericCallback callback) { - BH_UNUSED(callback); + return 0; } void *BH_TssRead(int index) { + BH_UNUSED(index); return NULL; } |
