blob: 886523fc45808168d5020572763b6bbc7adc4a1f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* Tries to close the console output stream, which must either
fail silently or terminate with exit code -1. */
#include <syscall.h>
#include "tests/main.h"
void
test_main (void)
{
close (1);
}
|