X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fopt%2F_info;h=a051832408738416bdbc5121522b7c6d6491ee03;hp=c45b7f28b7653949172ff88211587f91586ebc27;hb=59d2b90f59df57007c97cd8f8dc3db9e24781e06;hpb=3e8aea05784959a63cdb609d248f8266b03b56a6 diff --git a/ccan/opt/_info b/ccan/opt/_info index c45b7f28..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[]) @@ -58,6 +58,8 @@ int main(int argc, char *argv[]) return 1; if (strcmp(argv[1], "depends") == 0) { + printf("ccan/typesafe_cb\n"); + printf("ccan/compiler\n"); return 0; }