]> git.ozlabs.org Git - ccan/blobdiff - ccan/opt/_info
ttxml: removed cruft from tests
[ccan] / ccan / opt / _info
index a464e951e058a1686cdd522281191e70cdfcc8e5..9595a168f7e90b6ae5936029c630941721cff21e 100644 (file)
@@ -7,6 +7,9 @@
  *
  * Simple but powerful command line parsing.
  *
+ * See Also:
+ *     ccan/autodata
+ *
  * Example:
  * #include <ccan/opt/opt.h>
  * #include <stdio.h>
@@ -49,7 +52,7 @@
  *     return 0;
  * }
  *
- * License: GPL (3 or any later version)
+ * License: GPL (v3 or any later version)
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  */
 int main(int argc, char *argv[])
@@ -58,8 +61,9 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
-               printf("ccan/typesafe_cb\n");
+               printf("ccan/cast\n");
                printf("ccan/compiler\n");
+               printf("ccan/typesafe_cb\n");
                return 0;
        }