mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
8099050c71
This is the result of running $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h in the compat directory
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);
|
|
}
|