Trust uboot's device list only if it does not look suspicious.
[AROS.git] / test / library / dummyadd.c
blob1ab0bc1b96023f5ce6596022f77729b0eb20a013
1 /*
2 Copyright © <year>, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
7 #include <proto/dummy.h>
9 /*****************************************************************************
11 NAME */
12 AROS_LH2(ULONG, DummyAdd,
14 /* SYNOPSIS */
15 AROS_LHA(ULONG, a, D0),
16 AROS_LHA(ULONG, b, D1),
18 /* LOCATION */
19 struct Library *, UserelBase, 5, Userel)
21 /* FUNCTION
23 INPUTS
25 RESULT
27 NOTES
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 HISTORY
39 *****************************************************************************/
41 AROS_LIBFUNC_INIT
43 return add(a,b);
45 AROS_LIBFUNC_EXIT