aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseyko <seyko2@gmail.com>2015-11-05 20:14:42 +0300
committerseyko <seyko2@gmail.com>2015-11-05 20:14:42 +0300
commit0ad87a094cf791e45bd3e96941c59d195361be0e (patch)
tree43e04c574f7560f8aba7bb4ecbbed13af1d8ff04
parenta6276b7a7846a59b06b1909c63435b580b8c4d29 (diff)
downloadtinycc-0ad87a094cf791e45bd3e96941c59d195361be0e.tar.gz
tinycc-0ad87a094cf791e45bd3e96941c59d195361be0e.tar.bz2
fix for the previous commit
a cross-compilation from unix to win32 need a "sys/stat.h" include file
-rw-r--r--tcc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tcc.h b/tcc.h
index 01ed16f..0895c69 100644
--- a/tcc.h
+++ b/tcc.h
@@ -39,6 +39,7 @@
#include <fcntl.h>
#include <setjmp.h>
#include <time.h>
+#include <sys/stat.h> // stat()
#ifdef CONFIG_TCCASSERT
#include <assert.h>