diff tcc.h @ 589:49d3fc246344

Small fix for building on a 64 bit host.
author Rob Landley <rob@landley.net>
date Sun, 06 Apr 2008 16:10:01 -0500
parents 8e32c8615b39
children
line wrap: on
line diff
--- a/tcc.h	Sun Apr 06 15:11:54 2008 -0500
+++ b/tcc.h	Sun Apr 06 16:10:01 2008 -0500
@@ -164,7 +164,7 @@
 /* symbol management */
 typedef struct Sym {
     int token;    /* symbol token */
-    int r;    /* associated register */
+    long r;    /* associated register */
     long c;    /* associated number */
     CType type;    /* associated type */
     struct Sym *next; /* next related symbol */