diff options
Diffstat (limited to 'head')
| -rw-r--r-- | head/defconf/token.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/head/defconf/token.h b/head/defconf/token.h index 4a69311..9db1a7e 100644 --- a/head/defconf/token.h +++ b/head/defconf/token.h @@ -25,12 +25,14 @@ typedef enum { * @type: Token type * @c: Associated character * @s: Associated string + * @v: Associated integer */ struct token { tt_t type; union { char c; char *s; + size_t v; }; }; |
