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