aboutsummaryrefslogtreecommitdiff
path: root/src/tokenize.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tokenize.c')
-rw-r--r--src/tokenize.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tokenize.c b/src/tokenize.c
index 822bc70..28a5336 100644
--- a/src/tokenize.c
+++ b/src/tokenize.c
@@ -3,8 +3,7 @@
#include <ctype.h>
-internal int
-token_equals(struct token token, const char *match)
+int token_equals(struct token token, const char *match)
{
const char *at = match;
for(int i = 0; i < token.length; ++i, ++at) {