2 Copyright © 2012-2013, 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 __posixc_set_environptr() autodoc for more information.
12 #include <aros/symbolsets.h>
17 static int __environ_init(struct ExecBase
*SysBase
)
19 return __posixc_set_environptr(&environ
);
22 ADD2INIT(__environ_init
, 0)