Autodoc corrections
[cake.git] / compiler / clib / arosc_autoinit.c
blobabb4ee8a0741dbe1c1eed9083c2d55ce4dfe296a
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 int __arosc_libopen(struct Library *aroscbase)
14 return arosc_internalinit();
17 static void __arosc_libclose(struct Library *aroscbase)
19 arosc_internalexit();
22 ADD2OPENLIB(__arosc_libopen, 0);
23 ADD2CLOSELIB(__arosc_libclose, 0);
25 ADD2LIBS("arosc.library", 39, struct Library *, aroscbase);