12 lines
214 B
C
12 lines
214 B
C
|
/* Passes an invalid pointer to the exec system call.
|
||
|
The process must be terminated with -1 exit code. */
|
||
|
|
||
|
#include <syscall.h>
|
||
|
#include "tests/main.h"
|
||
|
|
||
|
void
|
||
|
test_main (void)
|
||
|
{
|
||
|
exec ((char *) 0x20101234);
|
||
|
}
|