1
0
mirror of https://github.com/openbsd/src.git synced 2026-05-01 09:37:02 +00:00

#include <stdint.h> because that is needed before #include <ohash.h>;

fixing a build failure of mandoc-portable on Arch Linux
reported by Stephen Gregoratto <dev at sgregoratto dot me>.
This commit is contained in:
schwarze
2020-04-03 10:29:01 +00:00
parent c10c3c4ada
commit 24807e1016

View File

@@ -1,4 +1,4 @@
/* $OpenBSD: tag.c,v 1.31 2020/04/02 22:10:27 schwarze Exp $ */
/* $OpenBSD: tag.c,v 1.32 2020/04/03 10:29:01 schwarze Exp $ */
/*
* Copyright (c) 2015,2016,2018,2019,2020 Ingo Schwarze <schwarze@openbsd.org>
*
@@ -22,6 +22,7 @@
#include <assert.h>
#include <limits.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>