start service tasks separately in-case platforms need to perform additional set-up...
[AROS.git] / rom / aros / aros_init.c
blobe3cb560a4970192e81fa378c508e8916e2f48208
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/symbolsets.h>
7 #include <proto/exec.h>
9 #include "aros_intern.h"
11 #include LC_LIBDEFS_FILE
13 int aros_Init(LIBBASETYPEPTR ArosBase)
15 ArosBase->aros_KernelBase = OpenResource("kernel.resource");
17 return TRUE;
20 ADD2INITLIB(aros_Init, 0);