]> git.cworth.org Git - notmuch/blob - compat/have_getline.c
Import notmuch_0.38.2.orig.tar.xz
[notmuch] / compat / have_getline.c
1 #define _GNU_SOURCE
2 #include <stdio.h>
3 #include <sys/types.h>
4
5 int
6 main ()
7 {
8     ssize_t count = 0;
9     size_t n = 0;
10     char **lineptr = NULL;
11     FILE *stream = NULL;
12
13     count = getline (lineptr, &n, stream);
14 }