Update mpc.h

mpc_state_t and mpc_err_t member order changed for better structure data alignment.
This commit is contained in:
Yetkin Öztürk
2014-04-06 18:07:12 +02:00
parent 7a2768d468
commit 17092f3637

4
mpc.h
View File

@@ -22,17 +22,17 @@
*/
typedef struct {
char next;
int pos;
int row;
int col;
char next;
} mpc_state_t;
typedef struct {
mpc_state_t state;
int expected_num;
char *filename;
char *failure;
int expected_num;
char **expected;
} mpc_err_t;