Date: Fri, 14 Dec 2012 12:37:35 +0000 (UTC) From: "Andrey V. Elsukov" <ae@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r244209 - head/sys/sys Message-ID: <201212141237.qBECbZbM060197@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ae Date: Fri Dec 14 12:37:35 2012 New Revision: 244209 URL: http://svnweb.freebsd.org/changeset/base/244209 Log: Add an #include guard to the sys/fnv_hash.h. MFC after: 3 days Modified: head/sys/sys/fnv_hash.h Modified: head/sys/sys/fnv_hash.h ============================================================================== --- head/sys/sys/fnv_hash.h Fri Dec 14 11:38:15 2012 (r244208) +++ head/sys/sys/fnv_hash.h Fri Dec 14 12:37:35 2012 (r244209) @@ -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_ */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212141237.qBECbZbM060197>