From 359b6d0ce951302d63cfe3a7a1d8305e6e604aa2 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 22 Sep 2013 10:31:08 -0500 Subject: getpwent.c: Fix missing prototype warnings --- cpukit/libcsupport/src/getpwent.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cpukit/libcsupport/src/getpwent.c b/cpukit/libcsupport/src/getpwent.c index 618f318885..1629adef5b 100644 --- a/cpukit/libcsupport/src/getpwent.c +++ b/cpukit/libcsupport/src/getpwent.c @@ -43,6 +43,11 @@ static FILE *group_fp; static char grbuf[200]; static struct group grent; +/* + * Prototype to avoid warning + */ +void init_etc_passwd_group(void); + /** * Initialize useable but dummy databases */ -- cgit v1.2.3