index
:
plan9front.git
cosa
front
gicv2
gicvn
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
src
/
libc
/
port
/
execl.c
blob: 40574fe63fdf65f6b82f3b29309e50a0bba7e037 (
plain
)
1
2
3
4
5
6
7
8
9
#include
<u.h>
#include
<libc.h>
int
execl
(
char
*
f
,
...)
{
return
exec
(
f
,
&
f
+
1
);
}