diff options
author | moteus <mimir@newmail.ru> | 2013-12-26 12:17:29 +0400 |
---|---|---|
committer | moteus <mimir@newmail.ru> | 2013-12-26 12:20:12 +0400 |
commit | b812e80d753b6e37fbf59fcc03e0056cb5c53b27 (patch) | |
tree | 86bbb52ecd9e4b659a9681a2c183b7ab8776daf5 | |
parent | 61dbda02e96b259cecfc01469d3e15d5c23607c7 (diff) | |
download | lua-llthreads2-b812e80d753b6e37fbf59fcc03e0056cb5c53b27.tar.gz lua-llthreads2-b812e80d753b6e37fbf59fcc03e0056cb5c53b27.tar.bz2 lua-llthreads2-b812e80d753b6e37fbf59fcc03e0056cb5c53b27.zip |
Fix. include some std libraries.
-rw-r--r-- | src/llthread.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/llthread.c b/src/llthread.c index a11ad18..b3b2ed6 100644 --- a/src/llthread.c +++ b/src/llthread.c | |||
@@ -2,6 +2,11 @@ | |||
2 | # define USE_PTHREAD | 2 | # define USE_PTHREAD |
3 | #endif | 3 | #endif |
4 | 4 | ||
5 | #include <stdlib.h> | ||
6 | #include <memory.h> | ||
7 | #include <assert.h> | ||
8 | #include <errno.h> | ||
9 | |||
5 | #ifndef USE_PTHREAD | 10 | #ifndef USE_PTHREAD |
6 | # include <windows.h> | 11 | # include <windows.h> |
7 | # include <stdio.h> | 12 | # include <stdio.h> |