11 lines
162 B
C
11 lines
162 B
C
|
/* Tests argument passing to child processes. */
|
||
|
|
||
|
#include <syscall.h>
|
||
|
#include "tests/main.h"
|
||
|
|
||
|
void
|
||
|
test_main (void)
|
||
|
{
|
||
|
wait (exec ("child-args childarg"));
|
||
|
}
|