]> git.notmuchmail.org Git - notmuch/blob - compat/check_getpwuid.c
lib/open: use local talloc context in n_d_create_with_config
[notmuch] / compat / check_getpwuid.c
1 #include <stdio.h>
2 #include <pwd.h>
3
4 int
5 main ()
6 {
7     struct passwd passwd, *ignored;
8
9     (void) getpwuid_r (0, &passwd, NULL, 0, &ignored);
10
11     return (0);
12 }