svn commit: r288629 - head/lib/libohash

Bryan Drewery bdrewery at FreeBSD.org
Sat Oct 3 20:06:51 UTC 2015


Author: bdrewery
Date: Sat Oct  3 20:06:50 2015
New Revision: 288629
URL: https://svnweb.freebsd.org/changeset/base/288629

Log:
  Include stddef.h for ptrdiff_t

Modified:
  head/lib/libohash/ohash.h

Modified: head/lib/libohash/ohash.h
==============================================================================
--- head/lib/libohash/ohash.h	Sat Oct  3 19:37:41 2015	(r288628)
+++ head/lib/libohash/ohash.h	Sat Oct  3 20:06:50 2015	(r288629)
@@ -20,6 +20,8 @@
 #ifndef OHASH_H
 #define OHASH_H
 
+#include <stddef.h>
+
 /* Open hashing support. 
  * Open hashing was chosen because it is much lighter than other hash
  * techniques, and more efficient in most cases.


More information about the svn-src-all mailing list