X-Git-Url: http://git.ieval.ro/?p=linux-seccomp.git;a=blobdiff_plain;f=libseccomp%2Fsrc%2Fhash.h;fp=libseccomp%2Fsrc%2Fhash.h;h=0000000000000000000000000000000000000000;hp=efd252f2bdc516de1883e303bc9c4bfa6557b10e;hb=a7f80a138de41255578bc28d034438a295ecbb2e;hpb=a8d04cb21e9ce2cfa37d893162df3e4943d9e480 diff --git a/libseccomp/src/hash.h b/libseccomp/src/hash.h deleted file mode 100644 index efd252f..0000000 --- a/libseccomp/src/hash.h +++ /dev/null @@ -1,26 +0,0 @@ -/** - * The "lookup3.c" Hash Implementation from Bob Jenkins - * - * Original Author: Bob Jenkins - * Source: http://burtleburtle.net/bob/c/lookup3.c - */ - -/* - * Original License: - * - * These are functions for producing 32-bit hashes for hash table lookup. - * hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final() - * are externally useful functions. Routines to test the hash are included - * if SELF_TEST is defined. You can use this free for any purpose. It's in - * the public domain. It has no warranty. - */ - -#ifndef _HASH_H -#define _HASH_H - -#include - -uint32_t jhash(const void *key, size_t length, uint32_t initval); - -#endif -