forked from Imagelibrary/rtems
2009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/getpwent.c: Ansify.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libcsupport/src/getpwent.c: Ansify.
|
||||
|
||||
2009-09-14 Sebastian Huber <Sebastian.Huber@embedded-brains.de>
|
||||
|
||||
* score/src/heapalignupuptr.c, score/src/heapallocatealigned.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;
|
||||
|
||||
Reference in New Issue
Block a user