]> git.notmuchmail.org Git - notmuch/blob - compat/check_getpwuid.c
Merge tag 'debian/0.29.3-1'
[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 }