revert between 56095 -> 55830 in arch
[AROS.git] / workbench / classes / datatypes / sound / sound_init.c
blob1881d0d5a020169ff4517769adaa139654b94711
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Text.datatype initialization code.
6 Lang: English.
7 */
9 #include <exec/types.h>
11 #include <proto/exec.h>
13 #include <aros/symbolsets.h>
15 #include "classbase.h"
17 /***************************************************************************************************/
19 static int InitSem(struct ClassBase *lh)
21 InitSemaphore(&lh->cb_LibLock);
23 return TRUE;
26 ADD2INITLIB(InitSem, 0);
28 /***************************************************************************************************/