2 Copyright © 2012, The AROS Development Team. All rights reserved.
5 Desc: Code enabling environ emulation mode for user programs.
6 This code is part of the static link library of arosc.
7 When programs do not access this variable environ emulation
9 See __arosc_set_environptr() autodoc for more information.
12 #include <aros/symbolsets.h>
17 static int __environ_init(void)
19 __arosc_set_environptr(&environ
);
24 ADD2INIT(__environ_init
, 0)