Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/userdb/getgrgid.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 815 - (show annotations) (download)
Fri Apr 24 18:32:46 2009 UTC (15 years ago) by niro
File MIME type: text/plain
File size: 221 byte(s)
-updated to klibc-1.5.15
1 /*
2 * getgrgid.c
3 *
4 * Dummy getgrgid() to support udev
5 */
6
7 #include <grp.h>
8
9 #include "userdb.h"
10
11 struct group *getgrgid(gid_t gid)
12 {
13 if (!gid)
14 return (struct group *)&__root_group;
15
16 errno = ENOENT;
17 return NULL;
18 }