flpelerin commited on
Commit
9b9e1af
·
1 Parent(s): 40bc463

Update file tokenizer.h

Browse files
Files changed (1) hide show
  1. c_tokenizer/tokenizer.h +1 -1
c_tokenizer/tokenizer.h CHANGED
@@ -13,7 +13,7 @@ extern char _binary_tokenizer_bin_end[];
13
 
14
  #define MAX_WORD_LEN 24
15
 
16
- typedef struct {
17
  uint8_t byte;
18
  uint16_t prev;
19
  } token_t;
 
13
 
14
  #define MAX_WORD_LEN 24
15
 
16
+ typedef struct __attribute__((packed)) token_t {
17
  uint8_t byte;
18
  uint16_t prev;
19
  } token_t;