]> git.notmuchmail.org Git - notmuch/blob - compat/have_getline.c
notmuch-show.c: add an option for messages to be returned unthreaded
[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 }