diff options
| author | seyko <seyko2@gmail.com> | 2015-11-05 20:14:42 +0300 |
|---|---|---|
| committer | seyko <seyko2@gmail.com> | 2015-11-05 20:14:42 +0300 |
| commit | 0ad87a094cf791e45bd3e96941c59d195361be0e (patch) | |
| tree | 43e04c574f7560f8aba7bb4ecbbed13af1d8ff04 /tcc.h | |
| parent | a6276b7a7846a59b06b1909c63435b580b8c4d29 (diff) | |
| download | tinycc-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
Diffstat (limited to 'tcc.h')
| -rw-r--r-- | tcc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -39,6 +39,7 @@ #include <fcntl.h> #include <setjmp.h> #include <time.h> +#include <sys/stat.h> // stat() #ifdef CONFIG_TCCASSERT #include <assert.h> |
