summaryrefslogtreecommitdiffstats
path: root/ctx.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-11-12 10:04:55 -0500
committerTavian Barnes <tavianator@tavianator.com>2020-11-12 10:05:17 -0500
commit3fc709530adbede1744a6d785598f8456d5f2626 (patch)
treed5f57a46f550f39bbc98c2cb7034e06527baaaf0 /ctx.c
parent61ffd3d1a138fa8bd218e61389fb6bd27cb6125c (diff)
downloadbfs-3fc709530adbede1744a6d785598f8456d5f2626.tar.xz
ctx: Add missing #include <limits.h>
Spotted at https://github.com/freebsd/freebsd-ports/commit/4d80040cb4c10271b375f3b5d70d2b29dae7fc6f
Diffstat (limited to 'ctx.c')
-rw-r--r--ctx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ctx.c b/ctx.c
index 6fc6ffb..2fc7cb1 100644
--- a/ctx.c
+++ b/ctx.c
@@ -23,6 +23,7 @@
#include "trie.h"
#include <assert.h>
#include <errno.h>
+#include <limits.h>
#include <stdlib.h>
struct bfs_ctx *bfs_ctx_new(void) {