flex: Fix -Wsign-compare warnings in generated scanners.
[dragonfly.git] / lib / libevtr / tok.h
1 #ifndef _TOK_H_
2 #define _TOK_H_
3
4 struct token {
5         int type;
6         union {
7                 char *str;
8         };
9 };
10
11 void tok_free(struct token *);
12 #endif /* _TOK_H_ */