naspro

view naspro-core/src/init.c @ 174:4f7243a606b1

Updated copyright notices and build system
author Stefano D'Angelo <zanga.mail@gmail.com>
date Sat May 01 21:51:33 2010 +0300 (2010-05-01)
parents d7568c8379c1
children
line source
1 /*
2 * NASPRO - NASPRO Architecture for Sound Processing
3 * Core library
4 *
5 * Copyright (C) 2007-2010 Stefano D'Angelo <zanga.mail@gmail.com>
6 *
7 * See the COPYING file for license conditions.
8 */
10 #include "src/path.h"
11 #include "src/dl.h"
13 static void __attribute__((constructor))
14 init()
15 {
16 _nacore_path_init();
17 _nacore_dl_init();
18 }
20 static void __attribute__((destructor))
21 fini()
22 {
23 _nacore_dl_fini();
24 _nacore_path_fini();
25 }