repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
build/include the gpio.resource
[AROS.git]
/
test
/
clib
/
argv0_test4.c
blob
a8679d020d32ca6683f81c97db2341e693c72f7e
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <unistd.h>
7
8
#include
"test.h"
9
10
int
main
(
void
)
11
{
12
const char
*
cmd
=
"../clib/argv0_slave_nixc"
, *
arg1
=
"../clib/argv0_slave_nixc"
;
13
execl
(
cmd
,
cmd
,
arg1
,
NULL
);
14
15
return
FAIL
;
16
}