diff options
author | Tharre <tharre3@gmail.com> | 2016-10-31 22:06:17 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2016-10-31 22:06:17 +0100 |
commit | 75bf720347983547c21228df71b80a0409a32e28 (patch) | |
tree | 8f6a5ac0a7b5fa35dcec76da21cffe92e7149cd8 /src/build.h | |
parent | d030418896e0f74ed65bb69c2a0c058a3c6288f1 (diff) | |
download | redo-75bf720347983547c21228df71b80a0409a32e28.tar.gz redo-75bf720347983547c21228df71b80a0409a32e28.tar.xz redo-75bf720347983547c21228df71b80a0409a32e28.zip |
Split add_prereq() into general and specific
Diffstat (limited to 'src/build.h')
-rw-r--r-- | src/build.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/build.h b/src/build.h index 2611479..24367a4 100644 --- a/src/build.h +++ b/src/build.h @@ -12,6 +12,7 @@ #include <stdbool.h> extern void add_prereq(const char *target, const char *parent, int ident); +extern void add_prereq_path(const char *target, const char *parent, int ident); extern int update_target(const char *target, int ident); #endif |