Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / mdadm / pwgr.c
bloba07de336849549d1d029a5022a53767ccedfa8ff
2 /*
3 * We cannot link a static binary with passwd/group support, so
4 * just do without
5 */
6 #include <stdlib.h>
7 #include <pwd.h>
8 #include <grp.h>
10 struct passwd *getpwnam(const char *name)
12 return NULL;
14 struct group *getgrnam(const char *name)
16 return NULL;