summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport')
-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;