aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc_ohash.c
Commit message (Collapse)AuthorAgeFilesLines
* Because mandoc_aux.h and mandoc.h use __attribute__, all files thatIngo Schwarze2020-06-221-1/+3
| | | | | | | | include mandoc_aux.h or mandoc.h need to include config.h, too. It is suspected that for example IRIX needs this, or it is likely to throw errors in these files because the system compiler doesn't understand __attribute__. Issue reported by Kazuo Kuroi <kazuo at irixnet dot org>.
* including <ohash.h> requires including <stdint.h> beforehand;Ingo Schwarze2015-10-191-1/+2
| | | | noticed by Svyatoslav Mishyn <juef at openmailbox dot org>
* Reduce the amount of code by moving the three copies of the ohashIngo Schwarze2015-10-131-0/+62
callback functions into one common place, preparing for the use of ohash for some additional purposes. No functional change.