use the -newos toolchain even if -elf is present.
[newos.git] / apps / rld / rldbeos.c
blobf1f47fc787156517dceb1858dacbceb727bbb1bd
1 /*
2 ** Copyright 2002, Manuel J. Petit. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
4 */
6 #include "rld_priv.h"
8 int
9 export_load_addon(char const *name, unsigned flags)
11 (void)(name);
12 (void)(flags);
14 return -1;
17 int
18 export_unload_addon(int lib, unsigned flags)
20 (void)(lib);
21 (void)(flags);
23 return -1;
26 void *
27 export_addon_symbol(int lib, char const *sym, unsigned flags)
29 (void)(lib);
30 (void)(sym);
31 (void)(flags);
33 return 0;