diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/build.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/build.c b/src/build.c index a84a13a..02bbef4 100644 --- a/src/build.c +++ b/src/build.c @@ -1,4 +1,5 @@ #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> @@ -18,5 +19,6 @@ void build(Pkg pkg) { return; } - printf("%sno usable build system was found\n", print_error); + printf("%s no usable build system was found\n", print_error); + exit(EXIT_FAILURE); }
\ No newline at end of file |
