11 lines
214 B
C
Executable file
11 lines
214 B
C
Executable file
/* 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);
|
|
}
|