Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getpwnam.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c90562c5a980a5b7f1f4c1be2df89561929f8f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* FIXME: dummy stub for now.  */
#include <errno.h>
#include <pwd.h>

struct passwd *
_DEFUN (getpwnam, (name),
	_CONST char *name)
{
  errno = ENOSYS;
  return NULL;
}