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
delint/fix to build with paranoia flags
[AROS.git]
/
test
/
clib
/
environ.c
blob
68b47f133116ed9ddad3aa8c9befcc8b6a881bd6
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <stdio.h>
7
8
extern
char
**
environ
;
9
10
int
main
(
void
)
11
{
12
int
i
;
13
14
for
(
i
=
0
;
environ
[
i
] !=
NULL
;
i
++)
15
puts
(
environ
[
i
]);
16
17
puts
(
"-- No environment variables left."
);
18
19
return
0
;
20
}