xref: /csrg-svn/lib/libc/tahoe/sys/execl.s (revision 29450)
1*29450Ssam/*
2*29450Ssam * Copyright (c) 1983 Regents of the University of California.
3*29450Ssam * All rights reserved.  The Berkeley software License Agreement
4*29450Ssam * specifies the terms and conditions for redistribution.
5*29450Ssam */
6*29450Ssam
7*29450Ssam#ifdef SYSLIBC_SCCS
8*29450Ssam_sccsid:.asciz	"@(#)execl.s	5.1 (Berkeley) 07/02/86"
9*29450Ssam#endif SYSLIBC_SCCS
10*29450Ssam
11*29450Ssam#include "SYS.h"
12*29450Ssam
13*29450SsamENTRY(execl)
14*29450Ssam	pushab	8(fp)
15*29450Ssam	pushl	4(fp)
16*29450Ssam	calls	$12,_execv
17*29450Ssam	ret		# execl(file, arg1, arg2, ..., 0);
18