mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 19:38:07 +01:00
126347b694
[dgit import orig notmuch_0.38.2.orig.tar.xz]
12 lines
162 B
C
12 lines
162 B
C
#include <stdio.h>
|
|
#include <pwd.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct passwd passwd, *ignored;
|
|
|
|
(void) getpwuid_r (0, &passwd, NULL, 0, &ignored);
|
|
|
|
return (0);
|
|
}
|