]> git.ozlabs.org Git - ccan/blobdiff - ccan/asearch/_info
endian: add constant versions.
[ccan] / ccan / asearch / _info
index 92d330b73ab58dc3616d275be584ef4a15a21c7b..35282c4f5e734dd1d4fe0de9d84e9151e6776d6e 100644 (file)
@@ -10,7 +10,7 @@
  *
  * This version uses macros to be typesafe on platforms which support it.
  *
- * Licence: LGPL
+ * License: LGPL
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  *
  * Example:
@@ -39,7 +39,7 @@
  *                     printf("Not found!\n");
  *                     return 1;
  *             }
- *             printf("%u\n", p - &argv[2]);
+ *             printf("%u\n", (int)(p - &argv[2]));
  *             return 0;
  *     }
  */
@@ -50,9 +50,11 @@ int main(int argc, char *argv[])
 
        if (strcmp(argv[1], "depends") == 0) {
                printf("ccan/typesafe_cb\n");
+               return 0;
+       }
+       if (strcmp(argv[1], "testdepends") == 0) {
                printf("ccan/array_size\n");
                return 0;
        }
-
        return 1;
 }