fix(scanner): don't use system includes

This commit is contained in:
Christian Clason
2024-06-17 10:06:56 +02:00
parent 9bb99439aa
commit 422cbe1d93
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include <tree_sitter/parser.h>
#include "tree_sitter/parser.h"
#include <wctype.h>
#define MAX(a, b) ((a) > (b) ? (a) : (b))