11 lines
163 B
C
Executable file
11 lines
163 B
C
Executable file
/* Tests the exit system call. */
|
|
|
|
#include "tests/lib.h"
|
|
#include "tests/main.h"
|
|
|
|
void
|
|
test_main (void)
|
|
{
|
|
exit (57);
|
|
fail ("should have called exit(57)");
|
|
}
|