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
14 lines
216 B
C
14 lines
216 B
C
#define _GNU_SOURCE
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
ssize_t count = 0;
|
|
size_t n = 0;
|
|
char **lineptr = NULL;
|
|
FILE *stream = NULL;
|
|
|
|
count = getline (lineptr, &n, stream);
|
|
}
|