svn commit: r248235 - stable/9/sys/sys

Andrey V. Elsukov ae at FreeBSD.org
Wed Mar 13 10:45:37 UTC 2013


Author: ae
Date: Wed Mar 13 10:45:36 2013
New Revision: 248235
URL: http://svnweb.freebsd.org/changeset/base/248235

Log:
  MFC r244209:
    Add an #include guard to the sys/fnv_hash.h.

Modified:
  stable/9/sys/sys/fnv_hash.h
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/sys/fnv_hash.h
==============================================================================
--- stable/9/sys/sys/fnv_hash.h	Wed Mar 13 10:04:47 2013	(r248234)
+++ stable/9/sys/sys/fnv_hash.h	Wed Mar 13 10:45:36 2013	(r248235)
@@ -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_ */


More information about the svn-src-all mailing list