X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fopt%2F_info;h=a051832408738416bdbc5121522b7c6d6491ee03;hb=bd12721599802b1a91513ae56c0ab002890c60b0;hp=5e177a10e296766219dc8b36564e714a740ab030;hpb=cdc32f6d35066fe264a228fe20aa75729e41726e;p=ccan diff --git a/ccan/opt/_info b/ccan/opt/_info index 5e177a10..a0518324 100644 --- a/ccan/opt/_info +++ b/ccan/opt/_info @@ -5,7 +5,7 @@ /** * opt - simple command line parsing * - * Simple but powerful command line parsing, built on top of getopt_long. + * Simple but powerful command line parsing. * * Example: * #include @@ -49,7 +49,7 @@ * return 0; * } * - * Licence: GPL (3 or any later version) + * License: GPL (3 or any later version) * Author: Rusty Russell */ int main(int argc, char *argv[]) @@ -59,6 +59,7 @@ int main(int argc, char *argv[]) if (strcmp(argv[1], "depends") == 0) { printf("ccan/typesafe_cb\n"); + printf("ccan/compiler\n"); return 0; }