diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-09-25 19:47:29 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-09-25 19:47:29 +0330 |
commit | c409b8aaf6b6f63bd68a3356e146ab80b2ec8c4b (patch) | |
tree | 65ea5801fd910fc6bcff3f2e8f06b5fd7d249c78 /src/utils/file.h | |
parent | f79290084948f3cf140395c270c07cf29ca58e8d (diff) |
fixed multiple variable definition bug
tried to implement import
Diffstat (limited to 'src/utils/file.h')
-rw-r--r-- | src/utils/file.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/utils/file.h b/src/utils/file.h index 541e69d..104aec2 100644 --- a/src/utils/file.h +++ b/src/utils/file.h @@ -1,3 +1,6 @@ #pragma once -extern char *read_whole_file(const char *path); +#include <utils/types.h> +#include <compiler/source_code/source_code.h> + +extern Code *read_whole_file(const char *path); |