summaryrefslogtreecommitdiffstats
path: root/include/mingw/pwd.h
blob: d048842beb0d59f7b60629b4dc76819ab05e5ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <sys/types.h>

__inline struct passwd* getpwnam (char* g){return 0;}

struct passwd
{
  char *pw_name;
  char *pw_passwd;
  __uid_t pw_uid;
  __gid_t pw_gid;
  char *pw_gecos;
  char *pw_dir;
  char *pw_shell;
};

#define getpwuid(i) NULL