From 37008d0686d506ac001c018a183fa104cd424257 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 15 Sep 2009 04:18:40 +0000 Subject: =?UTF-8?q?2009-09-15=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libcsupport/src/getpwent.c: Ansify. --- cpukit/ChangeLog | 4 ++++ cpukit/libcsupport/src/getpwent.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 40ea55b38c..8020c42c2e 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2009-09-15 Ralf Corsépius + + * libcsupport/src/getpwent.c: Ansify. + 2009-09-14 Sebastian Huber * score/src/heapalignupuptr.c, score/src/heapallocatealigned.c: diff --git a/cpukit/libcsupport/src/getpwent.c b/cpukit/libcsupport/src/getpwent.c index af77444a86..a4b47e50fa 100644 --- a/cpukit/libcsupport/src/getpwent.c +++ b/cpukit/libcsupport/src/getpwent.c @@ -259,7 +259,7 @@ struct passwd *getpwuid( return p; } -struct passwd *getpwent() +struct passwd *getpwent(void) { if (passwd_fp == NULL) return NULL; @@ -418,7 +418,7 @@ struct group *getgrgid( return p; } -struct group *getgrent() +struct group *getgrent(void) { if (group_fp == NULL) return NULL; -- cgit v1.2.3