diff options
Diffstat (limited to 'build/cli/module')
-rw-r--r-- | build/cli/module | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/build/cli/module b/build/cli/module index cf6258f..221e6a0 100644 --- a/build/cli/module +++ b/build/cli/module @@ -6,14 +6,17 @@ #define BUILD_CLI_MODULE #include <build/types> +#include <build/utility> + #include <build/module> namespace build { namespace cli { - extern "C" void - cli_init (scope&, scope&, const location&, std::unique_ptr<module>&, bool); + extern "C" bool + cli_init ( + scope&, scope&, const location&, unique_ptr<module>&, bool, bool); } } |