aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/compat_ohash.h
Commit message (Collapse)AuthorAgeFilesLines
* Delete the __attribute__((__bounded__(...))) annotation.Ingo Schwarze2014-08-081-2/+1
| | | | | | That's an OpenBSD-specific gcc-4.2.1 security extension. It's certainly a bad idea to use such stuff in a compatibility header, as other operating systems just won't understand it.
* Merge from OpenBSD - Marc Espie improved the ohash interface:Ingo Schwarze2014-06-201-2/+2
| | | | | | * rename the halloc callback to calloc, provide overflow protection * rename the hfree callback to free, drop the useless size argument * prevent integer overflows in ohash_resize
* sync to OpenBSD:Ingo Schwarze2014-06-201-5/+6
| | | | whitespace and comment changes, no functional change
* Use C99 uint32_t, not BSD-style u_int32_t.Ingo Schwarze2014-01-041-1/+1
| | | | Needed for Solaris 10 as reported by Matthias Scheler.
* Add a compatibility interface for ohash.Kristaps Dzonsons2012-06-091-0/+73
This include's espie@'s wholesale src/lib/libc/ohash directory from OpenBSD into compat_ohash.c (with a single copyright/license notice at the top) and src/include/ohash.h as compat_ohash.h. The ohash_int.h part of compat_ohash.c has been changed only in that ohash.h points to compat_ohash.h. Added HAVE_OHASH test (test-ohash.c) to Makefile. In mandocdb.c and mansearch.c, check HAVE_OHASH test for inclusion.