11 lines
202 B
C
Executable file
11 lines
202 B
C
Executable file
/* Tries to close the keyboard input stream, which must either
|
|
fail silently or terminate with exit code -1. */
|
|
|
|
#include <syscall.h>
|
|
#include "tests/main.h"
|
|
|
|
void
|
|
test_main (void)
|
|
{
|
|
close (0);
|
|
}
|