Add an #include guard to the sys/fnv_hash.h.

MFC after:	3 days
This commit is contained in:
Andrey V. Elsukov 2012-12-14 12:37:35 +00:00
parent 4c794f5c06
commit a90d1c4bb2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=244209

View file

@ -7,6 +7,8 @@
*
* $FreeBSD$
*/
#ifndef _SYS_FNV_HASH_H_
#define _SYS_FNV_HASH_H_
typedef u_int32_t Fnv32_t;
typedef u_int64_t Fnv64_t;
@ -66,3 +68,4 @@ fnv_64_str(const char *str, Fnv64_t hval)
}
return hval;
}
#endif /* _SYS_FNV_HASH_H_ */