Diff for /gforth/engine/support.c between versions 1.47 and 1.48

version 1.47, 2012/03/13 19:33:31 version 1.48, 2012/03/22 16:27:11
Line 547  UCell gforth_dlopen(Char *c_addr, UCell Line 547  UCell gforth_dlopen(Char *c_addr, UCell
 #ifndef RTLD_GLOBAL  #ifndef RTLD_GLOBAL
 #define RTLD_GLOBAL 0  #define RTLD_GLOBAL 0
 #endif  #endif
   lib = (UCell)dlopen(file, RTLD_GLOBAL | RTLD_LAZY);    lib = (UCell)dlopen(file, RTLD_GLOBAL);
   free(file);    free(file);
   if(lib) return lib;    if(lib) return lib;
 #elif defined(_WIN32)  #elif defined(_WIN32)

Removed from v.1.47  
changed lines
  Added in v.1.48


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>