test: Use small Python script for JSON normalization instead of json.tool
[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 }