Small cleanup of extensions code
[AROS.git] / compiler / autoinit / libraries_nolibs.c
blob3edf588a77e832ee027b212ac3daacdb2982888f
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 *list[]) __attribute__ ((weak));
15 void set_close_libraries_list(const void *list[]) __attribute__ ((weak));
17 int set_open_libraries_list(const void *list[])
19 return 1;
22 void set_close_libraries_list(const void *list[])