1From 24d10919b4bc5e37a2d80b274d2cd2ee77b03549 Mon Sep 17 00:00:00 2001 2From: Khem Raj <raj.khem@gmail.com> 3Date: Mon, 13 Jan 2020 14:25:47 -0800 4Subject: [PATCH] Remove fgets() extern declaration 5 6These sources already include <stdio.h> which should bring the correct 7declaration 8 9Upstream-Status: Pending 10Signed-off-by: Khem Raj <raj.khem@gmail.com> 11--- 12 hosts_access.c | 1 - 13 misc.c | 2 -- 14 2 files changed, 3 deletions(-) 15 16diff --git a/hosts_access.c b/hosts_access.c 17index 329b35e..0133e5e 100644 18--- a/hosts_access.c 19+++ b/hosts_access.c 20@@ -44,7 +44,6 @@ static char sccsid[] = "@(#) hosts_access.c 1.21 97/02/12 02:13:22"; 21 #include <netdb.h> 22 #endif 23 24-extern char *fgets(); 25 extern int errno; 26 27 #ifndef INADDR_NONE 28diff --git a/misc.c b/misc.c 29index 74ca319..9a5e73a 100644 30--- a/misc.c 31+++ b/misc.c 32@@ -18,8 +18,6 @@ static char sccsic[] = "@(#) misc.c 1.2 96/02/11 17:01:29"; 33 34 #include "tcpd.h" 35 36-extern char *fgets(); 37- 38 #ifndef INADDR_NONE 39 #define INADDR_NONE (-1) /* XXX should be 0xffffffff */ 40 #endif 41-- 422.24.1 43 44