/*
 * exec1.c
 *
 * Simple program for testing exec.  It does not pass any arguments to
 * the child.
 */

#include "syscall.h"

int
main (int argc, char *argv[])
{
    char *prog = "exit1.coff";
    int pid;

    pid = exec (prog, 0, 0);
    if (pid < 0) {
	exit (-1);
    }
    exit (0);
}
