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

getpwent.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9479021e3f2d8fb95a97a727aece2a8ae0120fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* FIXME: dummy stub for now.  */
#include <errno.h>
#include <pwd.h>

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

/* FIXME: dummy stub for now.  */
struct passwd *
_DEFUN (getpwuid, (uid),
	uid_t uid)
{
  errno = ENOSYS;
  return NULL;
}

/* FIXME: dummy stub for now.  */
struct passwd *
_DEFUN (getpwent, (uid),
	uid_t uid)
{
  errno = ENOSYS;
  return NULL;
}