mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
12 lines
161 B
C
12 lines
161 B
C
|
#include <stdio.h>
|
||
|
#include <pwd.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
struct passwd passwd, *ignored;
|
||
|
|
||
|
(void) getpwuid_r (0, &passwd, NULL, 0, &ignored);
|
||
|
|
||
|
return (0);
|
||
|
}
|