[BACK]Return to dlfcn.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/dlfcn.h between version 1.7 and 1.8

version 1.7, 2003/04/25 19:16:12 version 1.8, 2003/09/02 15:14:54
Line 48 
Line 48 
 __END_DECLS  __END_DECLS
   
 /* Values for dlopen `mode'. */  /* Values for dlopen `mode'. */
 #define DL_LAZY         1  #define RTLD_LAZY       1
 #define RTLD_LAZY       DL_LAZY         /* SunOS Compat */  #define RTLD_NOW        2
   #define RTLD_GLOBAL     0x100
   #define RTLD_LOCAL      0x000
   #define DL_LAZY         RTLD_LAZY       /* Compat */
   
 /*  /*
  * dlctl() commands   * dlctl() commands

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8