1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 04:54:54 +00:00

Minor changes

git-svn-id: svn://svn.cc65.org/cc65/trunk@835 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-08-03 06:45:30 +00:00
parent eaf1304b71
commit 254948fcfe

View File

@ -46,8 +46,8 @@
/* Map a generator function and its attributes to a token */
typedef struct {
unsigned char Tok; /* Token to map to */
unsigned char Flags; /* Flags for generator function */
token_t Tok; /* Token to map to */
unsigned Flags; /* Flags for generator function */
void (*Func) (unsigned, unsigned long); /* Generator func */
} GenDesc;