grep: Add missing unistd.h and limits.h includes
authortb <tb@openbsd.org>
Wed, 15 Dec 2021 19:22:44 +0000 (19:22 +0000)
committertb <tb@openbsd.org>
Wed, 15 Dec 2021 19:22:44 +0000 (19:22 +0000)
commit75891f45ba202082e573a03f58a61c230bb10e38
treeb1ca7e011672f747775a77578ac648c991383bff
parent8140105029fda13d2cfcaa93f381256369cf92e7
grep: Add missing unistd.h and limits.h includes

Both binary.c and file.c currently pull in unistd.h via zlib's zconf.h.
binary.c uses SEEK_SET and file.c a bunch of things like close(), isatty(),
lseek(). In addition file.c needs limits.h for PATH_MAX.

ok deraadt
usr.bin/grep/binary.c
usr.bin/grep/file.c