diff options
author | Tharre <tharre3@gmail.com> | 2016-07-26 12:12:15 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2016-07-26 12:12:15 +0200 |
commit | ca1b481d6e8606db85e82c236c8edf29b49126c8 (patch) | |
tree | f2067117a75da2562b7acf9a2e52d42eff6e647f /src/build.h | |
parent | ca3cb1fd17adb1ec8c86372cd11333f6e345e013 (diff) | |
download | redo-ca1b481d6e8606db85e82c236c8edf29b49126c8.tar.gz redo-ca1b481d6e8606db85e82c236c8edf29b49126c8.tar.xz redo-ca1b481d6e8606db85e82c236c8edf29b49126c8.zip |
Implement new dependency storage system
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 9735080..2611479 100644 --- a/src/build.h +++ b/src/build.h @@ -11,7 +11,7 @@ #include <stdbool.h> -extern void add_dep(const char *target, const char *parent, int ident); +extern void add_prereq(const char *target, const char *parent, int ident); extern int update_target(const char *target, int ident); #endif |