]> git.ozlabs.org Git - ccan/blobdiff - ccan/asort/_info
asort, cdump, htable, list, noerr, strmap, tal/link: fix sign warnings in examples.
[ccan] / ccan / asort / _info
index c5b2a0bb23706f50b6646b8310ee21eeed4a8893..4d59bec1a7a58d05af0fe4ca8c28f018207a2615 100644 (file)
@@ -1,3 +1,4 @@
+#include "config.h"
 #include <stdio.h>
 #include <string.h>
 
@@ -11,7 +12,7 @@
  *
  * asort does both.
  *
- * Licence: LGPL
+ * License: LGPL (v2.1 or any later version)
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  *
  * Example:
@@ -30,7 +31,7 @@
  *     int main(int argc, char *argv[])
  *     {
  *             bool casefold = false;
- *             unsigned int i;
+ *             int i;
  *     
  *             if (argc < 2) {
  *                     fprintf(stderr, "Usage: %s [-i] <list>...\n"
@@ -57,7 +58,10 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
-               printf("ccan/typesafe_cb\n");
+               printf("ccan/order\n");
+               return 0;
+       }
+       if (strcmp(argv[1], "testdepends") == 0) {
                printf("ccan/array_size\n");
                return 0;
        }