diff options
Diffstat (limited to 'src/tools/lcc/cpp/unix.c')
-rw-r--r-- | src/tools/lcc/cpp/unix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/lcc/cpp/unix.c b/src/tools/lcc/cpp/unix.c index b7850df8..397b1b4c 100644 --- a/src/tools/lcc/cpp/unix.c +++ b/src/tools/lcc/cpp/unix.c @@ -19,7 +19,7 @@ setup(int argc, char **argv) char *fp, *dp; Tokenrow tr; extern void setup_kwtab(void); - char *includeDirs[ NINCLUDE ] = { 0 }; + uchar *includeDirs[ NINCLUDE ] = { 0 }; int numIncludeDirs = 0; setup_kwtab(); @@ -77,7 +77,7 @@ setup(int argc, char **argv) includelist[NINCLUDE-1].file = dp; for( i = 0; i < numIncludeDirs; i++ ) - appendDirToIncludeList( includeDirs[ i ] ); + appendDirToIncludeList( (char *)includeDirs[ i ] ); setsource(fp, fd, NULL); } |