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

getpwuid.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e9fcb2200113ca729ba08da413ec1691b733c06 (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 (getpwuid, (uid),
	uid_t uid)
{
  errno = ENOSYS;
  return NULL;
}