]> rtime.felk.cvut.cz Git - notmuch.git/blob - compat/check_getpwuid.c
cli: Introduce "notmuch address" command
[notmuch.git] / compat / check_getpwuid.c
1 #include <stdio.h>
2 #include <pwd.h>
3
4 int main()
5 {
6     struct passwd passwd, *ignored;
7
8     (void) getpwuid_r (0, &passwd, NULL, 0, &ignored);
9
10     return (0);
11 }