X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Favl%2F_info;h=c7fc98a46ff2f97327d9c92518a550651c255432;hb=e7e57cbf6725debd99238ccd8e3bf273a8d7e61c;hp=0f1d89a45f709d6abd911020d366b92c448c3cbe;hpb=700aea923d8fb6cb1c82333d4c11e2bd8bbed3c5;p=ccan diff --git a/ccan/avl/_info b/ccan/avl/_info index 0f1d89a4..c7fc98a4 100644 --- a/ccan/avl/_info +++ b/ccan/avl/_info @@ -1,5 +1,6 @@ -#include #include "config.h" +#include +#include /** * avl - Key-value dictionary based on AVL trees @@ -32,7 +33,7 @@ * * int main(void) * { - * AVL *avl = avl_new((AvlCompare) strcmp); + * AVL *avl = avl_new((total_order_noctx_cb) strcmp); * AvlIter i; * struct tally *tally; * char line[256]; @@ -63,8 +64,9 @@ * return 0; * } * - * Licence: ISC * Author: Joey Adams + * License: MIT + * Version: 0.1 */ int main(int argc, char *argv[]) { @@ -73,7 +75,7 @@ int main(int argc, char *argv[]) return 1; if (strcmp(argv[1], "depends") == 0) { - /* Nothing */ + printf("ccan/order\n"); return 0; }