Don't call ReadArgs() if started from WB.
[tangerine.git] / compiler / clib / arosc_autoinit.c
blob8da676895d7c0b1bdc27a3be79442b6eace230d4
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: autoinit library - arosc.library specific code
6 Lang: english
7 */
9 #include <aros/symbolsets.h>
10 #include "arosc_init.h"
12 static AROS_SET_LIBFUNC(__arosc_libopen, struct Library *, aroscbase)
14 AROS_USERFUNC_INIT
16 return arosc_internalinit();
18 AROS_USERFUNC_EXIT
21 static AROS_SET_LIBFUNC(__arosc_libclose, struct Library *, aroscbase)
23 AROS_USERFUNC_INIT
25 arosc_internalexit();
27 return 1;
29 AROS_USERFUNC_EXIT
32 ADD2OPENLIB(__arosc_libopen, 0);
33 ADD2CLOSELIB(__arosc_libclose, 0);
35 ADD2LIBS("arosc.library", 39, struct Library *, aroscbase);