File: pwgr.c

package info (click to toggle)
mdadm 4.5-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,092 kB
  • sloc: ansic: 46,827; sh: 2,481; makefile: 281; python: 44
file content (17 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (14)
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;
}