From 5c3c78f561f50401d26229bd3ed2546558f9e305 Mon Sep 17 00:00:00 2001 From: "Chloe M." Date: Sat, 23 May 2026 19:23:39 -0400 Subject: core: parser: Remove debug lines Signed-off-by: Chloe M. --- core/tokbuf.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'core/tokbuf.c') diff --git a/core/tokbuf.c b/core/tokbuf.c index 1c9783f..0a1cde4 100644 --- a/core/tokbuf.c +++ b/core/tokbuf.c @@ -29,8 +29,6 @@ tokbuf_init(struct tokbuf *tokbuf) return 0; } -#include - int tokbuf_push(struct tokbuf *tokbuf, struct token *tok) { @@ -52,7 +50,6 @@ tokbuf_push(struct tokbuf *tokbuf, struct token *tok) tokbuf->cap = newcap; } - printf("%d %d\n", tokbuf->head, tok->type); tokbuf->buf[tokbuf->head++] = *tok; return 0; } -- cgit v1.2.3