[BACK]Return to test-fgetln.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/test-fgetln.c, Revision 1.3

1.2       schwarze    1: #include <sys/types.h>
1.1       kristaps    2: #include <stdio.h>
1.2       schwarze    3: #include <unistd.h>
1.1       kristaps    4:
                      5: int
                      6: main(void)
                      7: {
                      8:        size_t sz;
1.2       schwarze    9:        fclose(stdin);
1.3     ! schwarze   10:        return fgetln(stdin, &sz) != NULL;
1.1       kristaps   11: }

CVSweb