hyperv: Reorder the Hyper-V TSC initialization a bit.
[dragonfly.git] / lib / libevtr / tok.h
blobdc5c3ad6d8b64126cfc19eeddfd816a9aa3ee744
1 #ifndef _TOK_H_
2 #define _TOK_H_
4 struct token {
5 int type;
6 union {
7 char *str;
8 };
9 };
11 void tok_free(struct token *);
12 #endif /* _TOK_H_ */