Home | History | Annotate | Download | only in tc
      1 /*
      2  * This file creates a dummy version of dynamic loading
      3  * for environments where dynamic linking
      4  * is not used or available.
      5  */
      6 
      7 #include <string.h>
      8 #include "dlfcn.h"
      9 
     10 void *_dlsym(const char *sym)
     11 {
     12 #include "static-syms.h"
     13 	return NULL;
     14 }
     15