X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fhash%2F_info.c;fp=ccan%2Fhash%2F_info.c;h=0000000000000000000000000000000000000000;hp=2ec7272529cc4b464e7f16f94a510d6dd16d2076;hb=570c9c555f076e74f46141bb42b5d1d7ac89f632;hpb=8f61c0bccb152b2365baf70deac1e59264d7feb7 diff --git a/ccan/hash/_info.c b/ccan/hash/_info.c deleted file mode 100644 index 2ec72725..00000000 --- a/ccan/hash/_info.c +++ /dev/null @@ -1,27 +0,0 @@ -#include - -/** - * hash - routines for hashing bytes - * - * When creating a hash table it's important to have a hash function - * which mixes well and is fast. This package supplies such functions. - * - * The hash functions come in two flavors: the normal ones and the - * stable ones. The normal ones can vary from machine-to-machine and - * may change if we find better or faster hash algorithms in future. - * The stable ones will always give the same results on any computer, - * and on any version of this package. - * - * Licence: Public Domain - */ -int main(int argc, char *argv[]) -{ - if (argc != 2) - return 1; - - if (strcmp(argv[1], "depends") == 0) { - return 0; - } - - return 1; -}