X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Ftools.h;h=a7612c7a4022043f76c40e929dbc362fddc1ef58;hp=e43643ddb4d2028ffe1f3f9f9a9b018204876259;hb=023f704e8089f64bd7a77bb7f95b8ea5355fe640;hpb=40b0fa608877472b864bbc720dbd25ca4457509e diff --git a/tools/tools.h b/tools/tools.h index e43643dd..a7612c7a 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -1,13 +1,14 @@ #ifndef CCAN_TOOLS_H #define CCAN_TOOLS_H +#include #define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I." /* This actually compiles and runs the _info.c file to get dependencies. */ -char **get_deps(const void *ctx, const char *dir); +char **get_deps(const void *ctx, const char *dir, bool recurse); /* This is safer: just looks for ccan/ strings in _info.c */ -char **get_safe_ccan_deps(const void *ctx, const char *dir); +char **get_safe_ccan_deps(const void *ctx, const char *dir, bool recurse); #endif /* CCAN_TOOLS_H */