File: pwgr.c

package info (click to toggle)
mdadm 3.3.2-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 3,360 kB
  • sloc: ansic: 41,102; sh: 1,818; makefile: 300
file content (17 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

/*
 * We cannot link a static binary with passwd/group support, so
 * just do without
 */
#include	<stdlib.h>
#include	<pwd.h>
#include	<grp.h>

struct passwd *getpwnam(const char *name)
{
	return NULL;
}
struct group *getgrnam(const char *name)
{
	return NULL;
}