12 lines
202 B
C
12 lines
202 B
C
|
/* 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);
|
||
|
}
|