X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fccan_tokenizer%2F_info;h=4801a13b52f87f10976cacaa5bbde02369969f4d;hp=754b3cf680f4cc412b3d1adf36112ba557cf8fbc;hb=af052b1a93f91b6e0888d5ece29786243d57cf2e;hpb=6ba4abebd2fdaba81a0dad774de3cd8fc99304dc diff --git a/ccan/ccan_tokenizer/_info b/ccan/ccan_tokenizer/_info index 754b3cf6..4801a13b 100644 --- a/ccan/ccan_tokenizer/_info +++ b/ccan/ccan_tokenizer/_info @@ -64,7 +64,7 @@ * err(1, "Could not read file %s", argv[1]); * * //tokenize the contents - * tl = tokenize(file, len, &mq); + * tl = tokenize(file, file, len, &mq); * * //print warnings, errors, etc. * while (queue_count(mq)) { @@ -81,6 +81,8 @@ * * return 0; * } + * + * License: BSD */ int main(int argc, char *argv[]) { @@ -89,7 +91,8 @@ int main(int argc, char *argv[]) return 1; if (strcmp(argv[1], "depends") == 0) { - printf("ccan/array\n"); + printf("ccan/darray\n"); + printf("ccan/talloc\n"); return 0; }