X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=direct.h;h=3c884dc5a4b34b03cbbd531b8c15d9a4306910ab;hp=ea1aa231666fa83fac2d90c869a97abf81c8b32f;hb=f3c7d186a15b89c39e360b9cc89545a0d24bd6a4;hpb=582df8950c285e1746d0c4a9e3ead6545c962dc8 diff --git a/direct.h b/direct.h index ea1aa23..3c884dc 100644 --- a/direct.h +++ b/direct.h @@ -10,16 +10,17 @@ #define __DIRECT_H__ #include "rmac.h" +#include "token.h" // Exported variables -extern TOKEN exprbuf[]; +extern TOKENPTR exprbuf; extern SYM * symbolPtr[]; extern int (* dirtab[])(); extern int largestAlign[]; // Exported functions void auto_even(void); -int dep_block(uint32_t, WORD, uint32_t, WORD, TOKEN *); +int dep_block(uint32_t, WORD, uint32_t, WORD, TOKENPTR); int eject(void); int abs_expr(uint64_t *); int symlist(int(*)());