summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/getpwent.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-09-15 04:18:40 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-09-15 04:18:40 +0000
commit37008d0686d506ac001c018a183fa104cd424257 (patch)
tree768d2ca709b1af2caf27cfd91ed8421c01ef4eb5 /cpukit/libcsupport/src/getpwent.c
parent2009-09-14 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-37008d0686d506ac001c018a183fa104cd424257.tar.bz2
2009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/getpwent.c: Ansify.
Diffstat (limited to 'cpukit/libcsupport/src/getpwent.c')
-rw-r--r--cpukit/libcsupport/src/getpwent.c4
1 files changed, 2 insertions, 2 deletions
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;