summaryrefslogtreecommitdiff
path: root/src/sys/include/np
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-09-30 23:14:42 -0400
committerIan Moffett <ian@osmora.org>2025-09-30 23:15:11 -0400
commit2cf918c3e20164559f1bae5fbd83fb7a40e2190a (patch)
tree1a63891b78260ccceb2f11309db31ad7b36f1e4f /src/sys/include/np
parenteae25fcb847756d78d5f47393885672ecc6b69b7 (diff)
np: lex: Detect '*' token (TT_STAR)
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include/np')
-rw-r--r--src/sys/include/np/lex.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sys/include/np/lex.h b/src/sys/include/np/lex.h
index d6a6810..0381afb 100644
--- a/src/sys/include/np/lex.h
+++ b/src/sys/include/np/lex.h
@@ -52,6 +52,7 @@ typedef enum {
TT_RPAREN, /* ')' */
TT_IDENT, /* '<IDENTIFIER>' */
TT_COMMA, /* ',' */
+ TT_STAR, /* '*' */
/* Types */
TT_U8, /* 'u8' */