oops .. forgot to offset from objects bounds
[AROS.git] / rom / misc / misc_init.c
bloba63c7e4b4184e646c0cd7f4a4916b7dc19e4157d
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 /* HISTORY: 23.7.98 SDuvan Implemented based on BattClock code. */
11 #include <exec/types.h>
12 #include <exec/memory.h>
13 #include <exec/resident.h>
14 #include <proto/exec.h>
15 #include <proto/misc.h>
16 #include <resources/misc.h>
18 #include <aros/symbolsets.h>
19 #include "misc_intern.h"
21 #include LC_LIBDEFS_FILE
23 static int GM_UNIQUENAME(Init)(LIBBASETYPEPTR MiscBase)
25 InitSemaphore(&MiscBase->mb_Lock);
27 return TRUE;
30 ADD2INITLIB(GM_UNIQUENAME(Init), 0)