Reverted removal of 'const' from TagItem arrays/pointers in r50147
[AROS.git] / compiler / autoinit / libraries_nolibs.c
blob9a9163ad9965c5b7be43ee461f343df0c6913fbb
1 /*
2 Copyright © 1995-2005, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: autoinit library - automatic library opening/closing handling
6 Dummy functions to be used in case no libraries have to be opened/closed
7 Lang: english
8 */
10 #include <aros/symbolsets.h>
12 DEFINESET(LIBS)
14 int _set_open_libraries_list(const void * const list[], struct ExecBase *SysBase) __attribute__ ((weak));
15 void _set_close_libraries_list(const void * const list[], struct ExecBase *SysBase) __attribute__ ((weak));
17 int _set_open_libraries_list(const void * const list[], struct ExecBase *SysBase)
19 return 1;
22 void _set_close_libraries_list(const void * const list[], struct ExecBase *SysBase)