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
Removed 'examinelock', because its functionality is a subset of that of
[AROS.git]
/
test
/
clib
/
argv0_slave.c
blob
8cc3f1d948ebb28b40c8d5037e0fb6fe9ce7f3d5
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <stdio.h>
7
#include <string.h>
8
9
#include
"test.h"
10
11
int
main
(
int
argc
,
char
*
argv
[])
12
{
13
TEST
(
argc
==
2
);
14
TEST
(
strcmp
(
argv
[
0
],
argv
[
1
]) ==
0
);
15
16
return
OK
;
17
}
18
19
void
cleanup
(
void
)
20
{
21
/* NOP */
22
return
;
23
}