diff options
Diffstat (limited to '')
-rw-r--r-- | src/b_export.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/b_export.c b/src/b_export.c index 52790e4..c47a8fb 100644 --- a/src/b_export.c +++ b/src/b_export.c @@ -14,8 +14,9 @@ #include <stdlib.h> #include <stdint.h> -#include "d_enum.h" #include "b_env.h" +#include "b_export_next.h" +#include "d_enum.h" #include "f_fail.h" #include "s_destroy.h" #include "s_lcom.h" @@ -121,7 +122,7 @@ uint8_t } else if (next == FALSE && check_equals(*ptr) == TRUE) { - /* TODO: verify global vars, delete if needed, export the thing */ + b_export_with_equals(*ptr, msh); } ptr++; } |