Init the object variable for the registergroup so that
[cake.git] / test / library / dummylib.c
blob4e3d82e79cc90f60098da2aaead064eaaa2e0801
1 /*
2 Copyright © 1995-2008, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang:
7 */
8 #include <exec/types.h>
9 #include <aros/libcall.h>
11 AROS_LH2I(ULONG, add,
12 AROS_LHA(ULONG,a,D0),
13 AROS_LHA(ULONG,b,D1),
14 struct dummybase *,dummybase,5,Dummy
17 AROS_LIBFUNC_INIT
18 return a+b;
19 AROS_LIBFUNC_EXIT
22 AROS_LH2I(ULONG, asl,
23 AROS_LHA(ULONG,a,D0),
24 AROS_LHA(ULONG,b,D1),
25 struct dummybase *,dummybase,6,Dummy
28 AROS_LIBFUNC_INIT
29 return a<<b;
30 AROS_LIBFUNC_EXIT