1 /* 2 * Copyright (c) 1992, 1993 3 * The Regents of the University of California. All rights reserved. 4 * All rights reserved. 5 * 6 * This code is derived from software donated to Berkeley by 7 * Jan-Simon Pendry. 8 * 9 * %sccs.include.redist.c% 10 * 11 * @(#)pt_exec.c 8.1 (Berkeley) 06/05/93 12 * 13 * $Id: pt_exec.c,v 1.1 1992/05/25 21:43:09 jsp Exp jsp $ 14 */ 15 16 #include <stdio.h> 17 #include <unistd.h> 18 #include <stdlib.h> 19 #include <errno.h> 20 #include <sys/types.h> 21 #include <sys/param.h> 22 #include <sys/syslog.h> 23 24 #include "portald.h" 25 26 int portal_exec(pcr, key, v, so, fdp) 27 struct portal_cred *pcr; 28 char *key; 29 char **v; 30 int so; 31 int *fdp; 32 { 33 return (ENOEXEC); 34 } 35 36