refactored some code. compiles now without suppresing any warning with gcc-6.3.0.
[AROS.git] / rom / kernel / getscheduler.c
blobfebd816539ff35b5b183f7a855bccf43b62ab62c
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 #include <aros/kernel.h>
10 #include <kernel_base.h>
12 /*****************************************************************************
14 NAME */
15 #include <proto/kernel.h>
17 AROS_LH0I(KRN_SchedType, KrnGetScheduler,
19 /* SYNOPSIS */
21 /* LOCATION */
22 struct KernelBase *, KernelBase, 1, Kernel)
24 /* FUNCTION
26 INPUTS
28 RESULT
30 NOTES
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 AROS_LIBFUNC_INIT
44 return SCHED_RR;
46 AROS_LIBFUNC_EXIT