149676Smckusick /*- 2*65791Smckusick * Copyright (c) 1982, 1986, 1991, 1993 3*65791Smckusick * The Regents of the University of California. All rights reserved. 4*65791Smckusick * (c) UNIX System Laboratories, Inc. 5*65791Smckusick * All or some portions of this file are derived from material licensed 6*65791Smckusick * to the University of California by American Telephone and Telegraph 7*65791Smckusick * Co. or Unix System Laboratories, Inc. and are reproduced herein with 8*65791Smckusick * the permission of UNIX System Laboratories, Inc. 949676Smckusick * 1049676Smckusick * %sccs.include.redist.c% 1149676Smckusick * 12*65791Smckusick * from: @(#)kern_exec.c 8.1 (Berkeley) 6/10/93 1349676Smckusick */ 1449676Smckusick 15*65791Smckusick #include <sys/param.h> 16*65791Smckusick #include <sys/errno.h> 17*65791Smckusick #include <sys/proc.h> 1849676Smckusick 1949676Smckusick /* 2049676Smckusick * exec system call 2149676Smckusick */ 22*65791Smckusick struct execve_args { 23*65791Smckusick char *fname; 24*65791Smckusick char **argp; 25*65791Smckusick char **envp; 26*65791Smckusick }; 2749676Smckusick /* ARGSUSED */ 28*65791Smckusick execve(a1, a2, a3) 29*65791Smckusick struct proc *a1; 30*65791Smckusick struct execve_args *a2; 31*65791Smckusick int *a3; 3249676Smckusick { 3349676Smckusick 3449676Smckusick /* 3549676Smckusick * Body deleted. 3649676Smckusick */ 3749676Smckusick return (ENOSYS); 3849676Smckusick } 39