]> git.cameronkatri.com Git - mandoc.git/blob - test-fgetln.c
forgot to commit one request bu espie@
[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 }