From: tb Date: Wed, 15 Dec 2021 19:22:44 +0000 (+0000) Subject: grep: Add missing unistd.h and limits.h includes X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=75891f45ba202082e573a03f58a61c230bb10e38;p=openbsd 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 --- diff --git a/usr.bin/grep/binary.c b/usr.bin/grep/binary.c index 119c9466aed..c1377b85854 100644 --- a/usr.bin/grep/binary.c +++ b/usr.bin/grep/binary.c @@ -1,4 +1,4 @@ -/* $OpenBSD: binary.c,v 1.19 2021/03/10 21:55:22 millert Exp $ */ +/* $OpenBSD: binary.c,v 1.20 2021/12/15 19:22:44 tb Exp $ */ /*- * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav @@ -30,6 +30,7 @@ #include #include #include +#include #include #include "grep.h" diff --git a/usr.bin/grep/file.c b/usr.bin/grep/file.c index 27b7f765abf..ede1c0840c6 100644 --- a/usr.bin/grep/file.c +++ b/usr.bin/grep/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.16 2021/03/10 21:55:22 millert Exp $ */ +/* $OpenBSD: file.c,v 1.17 2021/12/15 19:22:44 tb Exp $ */ /*- * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav @@ -30,8 +30,10 @@ #include #include #include +#include #include #include +#include #include #include "grep.h"