diff options
author | Tharre <tharre3@gmail.com> | 2014-11-16 19:19:59 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2014-11-16 19:19:59 +0100 |
commit | df9bc5b9d048c7ecb96838123e39d5bc7c23aa18 (patch) | |
tree | 5432d5cc4a0e5a7550f7bae00964f09cb68b6361 /src/build.h | |
parent | b4c1b2145d6a0b1ec4219847dc26877046f84e8b (diff) | |
download | redo-df9bc5b9d048c7ecb96838123e39d5bc7c23aa18.tar.gz redo-df9bc5b9d048c7ecb96838123e39d5bc7c23aa18.tar.xz redo-df9bc5b9d048c7ecb96838123e39d5bc7c23aa18.zip |
Refactor error handling system by using die()
Defined error messages have also been replaced with string literals.
Diffstat (limited to 'src/build.h')
-rw-r--r-- | src/build.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.h b/src/build.h index e4ef626..0eae0f3 100644 --- a/src/build.h +++ b/src/build.h @@ -13,7 +13,7 @@ extern void add_dep(const char *target, const char *parent, int ident); extern int update_target(const char *target, int ident); -extern int build_target(const char *target); +extern void build_target(const char *target); extern bool environment_sane(); #endif |