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