1 /*- 2 * Copyright (c) 1982, 1986, 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * (c) UNIX System Laboratories, Inc. 5 * All or some portions of this file are derived from material licensed 6 * to the University of California by American Telephone and Telegraph 7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with 8 * the permission of UNIX System Laboratories, Inc. 9 * 10 * %sccs.include.redist.c% 11 * 12 * from: @(#)kern_exec.c 8.1 (Berkeley) 6/10/93 13 */ 14 15 #include <sys/param.h> 16 #include <sys/errno.h> 17 #include <sys/proc.h> 18 19 /* 20 * exec system call 21 */ 22 struct execve_args { 23 char *fname; 24 char **argp; 25 char **envp; 26 }; 27 /* ARGSUSED */ 28 execve(a1, a2, a3) 29 struct proc *a1; 30 struct execve_args *a2; 31 int *a3; 32 { 33 34 /* 35 * Body deleted. 36 */ 37 return (ENOSYS); 38 } 39