diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-11-12 10:04:55 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-11-12 10:05:17 -0500 |
commit | 3fc709530adbede1744a6d785598f8456d5f2626 (patch) | |
tree | d5f57a46f550f39bbc98c2cb7034e06527baaaf0 /ctx.c | |
parent | 61ffd3d1a138fa8bd218e61389fb6bd27cb6125c (diff) | |
download | bfs-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) { |