notmuch/compat/have_getline.c
uncrustify 8099050c71 compat: run uncrustify
This is the result of running

     $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h

in the compat directory
2019-06-14 07:41:27 -03:00

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);
}