Skip to content

Commit 37d820b

Browse files
committed
fix: incorrect scanner.h and parser.h include paths in builder.c
1 parent 2300d64 commit 37d820b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/prm/builder.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#include <string.h>
44
#include "prm.h"
55
#include "transpiler_ui.h"
6-
#include "../compiler/lexer/scanner.h"
7-
#include "../compiler/parser/parser.h"
6+
#include "scanner.h"
7+
#include "parser.h"
88

99
// Helper to read file content for parsing
1010
static char* read_file_prm(const char* path) {

0 commit comments

Comments
 (0)