]> git.cameronkatri.com Git - mandoc.git/blob - test-fgetln.c
Provide a helper function macro_or_word() and use it to prune the
[mandoc.git] / test-fgetln.c
1 #include <sys/types.h>
2 #include <stdio.h>
3 #include <unistd.h>
4
5 int
6 main(void)
7 {
8 size_t sz;
9 fclose(stdin);
10 return(NULL != fgetln(stdin, &sz));
11 }