diff options
author | Marvin Borner | 2023-05-20 14:13:45 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-20 14:13:45 +0200 |
commit | 8499010b91a2c7496d6af74cce35a6b4e0378633 (patch) | |
tree | c57a6a6fb12f4653928662e93d4470453068e361 /inc/build.h | |
parent | f640ceee89836b56ac95c4eb1b0a43d1171c3354 (diff) |
Added testing flag
still not able to find the 8cc bug but idc because I tested it
with many programs and it probably won't be an issue for now
Diffstat (limited to 'inc/build.h')
-rw-r--r-- | inc/build.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/inc/build.h b/inc/build.h index 2d99f9d..0b76768 100644 --- a/inc/build.h +++ b/inc/build.h @@ -4,11 +4,13 @@ #ifndef BLOC_BUILD_H #define BLOC_BUILD_H +#include <stdio.h> + #include <spec.h> #include <tree.h> #include <parse.h> -void write_bloc(struct list *table, const char *path); -void write_blc(struct bloc_parsed *bloc, const char *path); +void write_bloc(struct list *table, FILE *file); +void write_blc(struct bloc_parsed *bloc, FILE *file); #endif |