bug fixes: ifval must be an arith, not an int

This commit is contained in:
ceriel
1987-08-19 10:36:37 +00:00
parent d7b2998ebe
commit d35035fab8
8 changed files with 34 additions and 27 deletions

View File

@@ -10,11 +10,13 @@
to it.
*/
#include <em_arith.h>
/* the structure of a token: */
struct token {
int tok_symb; /* the token itself */
union {
int tok_val; /* numeric values */
arith tok_val; /* numeric values */
char *tok_str; /* string/filespecifier */
} tok_data;
};