summaryrefslogtreecommitdiffstats
path: root/test-fgetln.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-01-04 01:11:00 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-01-04 01:11:00 +0000
commitdfda0cb34b738e8d555c93e3f4f316a2594a9d25 (patch)
tree4f295e79675d1c9d62354c0c23719c00b77183f1 /test-fgetln.c
parentc17325b87a0a99d79e776e4c805dc22ae21cef67 (diff)
downloadmandoc-dfda0cb34b738e8d555c93e3f4f316a2594a9d25.tar.gz
Clean up feature tests:
* Split the configure steering script out of the Makefile. * Let the configure step depend on the test sources. * Clean up the test programs such that they can be run.
Diffstat (limited to 'test-fgetln.c')
-rw-r--r--test-fgetln.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test-fgetln.c b/test-fgetln.c
index 90869cd8..ac225a17 100644
--- a/test-fgetln.c
+++ b/test-fgetln.c
@@ -1,11 +1,11 @@
+#include <sys/types.h>
#include <stdio.h>
-#include <stdlib.h>
+#include <unistd.h>
int
main(void)
{
- char *cp;
size_t sz;
- cp = fgetln(stdin, &sz);
- return 0;
+ fclose(stdin);
+ return(NULL != fgetln(stdin, &sz));
}