mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 19:38:07 +01:00
13 lines
162 B
C
13 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);
|
||
|
}
|