nasm.h: Reorder tokenval members to drop padding

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2011-07-17 20:00:30 +04:00
parent 7248f8c9e9
commit d47e00db4c

6
nasm.h
View file

@ -251,9 +251,9 @@ size_t string_transform(char *, size_t, char **, enum strfunc);
* `t_type' field in the structure.
*/
struct tokenval {
enum token_type t_type;
char *t_charptr;
int64_t t_integer, t_inttwo;
char *t_charptr;
int64_t t_integer, t_inttwo;
enum token_type t_type;
};
typedef int (*scanner) (void *private_data, struct tokenval * tv);