notmuch/compat/have_getline.c
David Bremner 126347b694 Import notmuch_0.38.2.orig.tar.xz
[dgit import orig notmuch_0.38.2.orig.tar.xz]
2023-12-01 07:51:09 -04: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);
}