diff options
| author | Joe Soroka <gits@joesoroka.com> | 2011-04-12 00:11:47 -0700 |
|---|---|---|
| committer | Joe Soroka <gits@joesoroka.com> | 2011-04-12 00:11:47 -0700 |
| commit | 46e2dd7c3284462a954ce1eaf61d9af29b5a9159 (patch) | |
| tree | 38b47e8ca36fef764c121bca7fe9cca452079d88 /tcctok.h | |
| parent | 812781cd1130059f4ac74608fbd6b8f1cff1d8b1 (diff) | |
| download | tinycc-46e2dd7c3284462a954ce1eaf61d9af29b5a9159.tar.gz tinycc-46e2dd7c3284462a954ce1eaf61d9af29b5a9159.tar.bz2 | |
tcctok.h: fix ifdef target/host confusion
Diffstat (limited to 'tcctok.h')
| -rw-r--r-- | tcctok.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -240,7 +240,7 @@ DEF(TOK_strlen, "strlen") DEF(TOK_strcpy, "strcpy") #endif -#if defined __i386__ || defined __x86_64__ +#if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 DEF(TOK_alloca, "alloca") #endif |
