summaryrefslogtreecommitdiff
path: root/mit-pthreads/tests/test_pw.c
blob: 0ef6d428180250855e606e6d3e61563fae99b34b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include <sys/types.h>
#include <pwd.h>

main()
{
  struct passwd *pw;

  pthread_init();
  pw = getpwuid(getuid());
  if (!pw) {
    printf("getpwuid(%d) died!\n", getuid());
    exit(1);
  }
  printf("getpwuid(%d) => %lx\n", getuid(), pw);
  printf("  you are: %s\n  uid: %d\n  gid: %d\n  class: %s\n  gecos: %s\n  dir: %s\n  shell: %s\n",
	 pw->pw_name, pw->pw_uid, pw->pw_gid, pw->pw_class, pw->pw_gecos, pw->pw_dir,
	 pw->pw_shell);
  exit(0);
}