I want to load a library in runtime using dlopen+dlsym calls. I want to list down the names of the functions which should be loaded using dlsym() and load these functions using a simple 'for' loop. Is there a way to mark functions(maybe using a 'gcc' attribute) to be loaded using 'dl' calls?
Thanks, Ram.