]> git.cameronkatri.com Git - mandoc.git/blob - test-fgetln.c
Accommodate for ISO C11. groff applied the same `St' argument on
[mandoc.git] / test-fgetln.c
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 int
5 main(void)
6 {
7 char *cp;
8 size_t sz;
9 cp = fgetln(stdin, &sz);
10 return 0;
11 }