aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/tst-setvbuf1.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/tst-setvbuf1.c')
-rw-r--r--stdio-common/tst-setvbuf1.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/stdio-common/tst-setvbuf1.c b/stdio-common/tst-setvbuf1.c
deleted file mode 100644
index 22410939c9..0000000000
--- a/stdio-common/tst-setvbuf1.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <stdio.h>
-
-static int
-do_test (void)
-{
- if (setvbuf (stderr, NULL, _IOFBF, BUFSIZ) != 0)
- {
- puts ("Set full buffer error.");
- return 1;
- }
-
- fprintf (stderr, "Output #1 <stderr>.\n");
- printf ("Output #2 <stdout>.\n");
-
- return 0;
-}
-
-#define TEST_FUNCTION do_test ()
-#include "../test-skeleton.c"