diff options
Diffstat (limited to 'include/solver_util.h')
-rw-r--r-- | include/solver_util.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/include/solver_util.h b/include/solver_util.h deleted file mode 100644 index 08f7f16..0000000 --- a/include/solver_util.h +++ /dev/null @@ -1,20 +0,0 @@ -#include <stdint.h> - -#include "jobs.h" - -#ifndef SOLVER_UTIL_H - -struct jobid { - struct job **jobs; - size_t filled, size; - uint32_t *cost; - /* user directly asked for this to be built, not a transitively acquired - * dependency */ - bool *isdirect; -}; - -void jobid_free(struct jobid *jid); -int jobid_init(struct job_clist *q, struct jobid **job_ids); - -#define SOLVER_UTIL_H -#endif |