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

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

struct group *getgrnam(const char* name) {
  struct group *tmp;
  getgrnam_r(name,&__group_pw,__group_buf,sizeof(__group_buf),&tmp);
  return tmp;
}