summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libcruft/getgrent.c
blob: e35e441fc015208eda37898f42d2992ce90226df (plain)
1
2
3
4
5
6
7
8
9
10
#include <grp.h>

extern struct group __group_pw;
extern char __group_buf[1000];

struct group *getgrent(void) {
  struct group* tmp;
  getgrent_r(&__group_pw,__group_buf,sizeof(__group_buf),&tmp);
  return tmp;
}