os161-1.99
 All Data Structures
vm-mix1-exec.c
00001 #include <stdio.h>
00002 #include <stdlib.h>
00003 #include <string.h>
00004 #include <unistd.h>
00005 
00006 static char *argv[2] = { (char *)"vm-mix1", NULL };
00007 
00008 int
00009 main()
00010 {
00011    execv("vm-mix1/vm-mix1", argv);
00012    exit(0);
00013 }
00014 
 All Data Structures