xref: /csrg-svn/lib/libc/tahoe/sys/exect.s (revision 29451)
1*29451Ssam/*
2*29451Ssam * Copyright (c) 1983 Regents of the University of California.
3*29451Ssam * All rights reserved.  The Berkeley software License Agreement
4*29451Ssam * specifies the terms and conditions for redistribution.
5*29451Ssam */
6*29451Ssam
7*29451Ssam#ifdef SYSLIBC_SCCS
8*29451Ssam_sccsid:.asciz	"@(#)exect.s	5.1 (Berkeley) 07/02/86"
9*29451Ssam#endif SYSLIBC_SCCS
10*29451Ssam
11*29451Ssam#include "SYS.h"
12*29451Ssam#include <machine/psl.h>
13*29451Ssam
14*29451SsamENTRY(exect)
15*29451Ssam	bispsw	$PSL_T
16*29451Ssam	kcall	$SYS_execve
17*29451Ssam	jmp	cerror		# exect(file, argv, env)
18