1*21800Sdist/* 2*21800Sdist * Copyright (c) 1983 Regents of the University of California. 3*21800Sdist * All rights reserved. The Berkeley software License Agreement 4*21800Sdist * specifies the terms and conditions for redistribution. 5*21800Sdist */ 69448Smckusick 7*21800Sdist#ifndef lint 8*21800Sdiststatic char sccsid[] = "@(#)execv.s 5.1 (Berkeley) 06/03/85"; 9*21800Sdist#endif not lint 10*21800Sdist 119448Smckusick#include "SYS.h" 129448Smckusick 139448SmckusickENTRY(execv) 149448Smckusick .globl _environ 159448Smckusick pushl _environ 169448Smckusick pushl 8(ap) 179448Smckusick pushl 4(ap) 189448Smckusick calls $3,_execve 1910007Ssam ret # execv(file, argv) 20