>From f9400e622c46c122c703a9d5f5f6c95c3192014d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 2 Feb 2019 22:46:52 -0800 Subject: [PATCH 2/2] grep: fix grep.c includes * src/grep.c: Include strings.h; problem reported by David Monniaux (Bug#34285). Do not include fcntl.h, as system.h does that for us.h --- src/grep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grep.c b/src/grep.c index e53b8cd..fcc07b8 100644 --- a/src/grep.c +++ b/src/grep.c @@ -22,10 +22,10 @@ #include #include #include -#include #include #include #include +#include #include "system.h" #include "argmatch.h" -- 2.17.1