phobos 0.126

This commit is contained in:
Brad Roberts 2007-09-10 04:44:12 +00:00
parent eb9c6b12e3
commit ccbb884d7d
21 changed files with 739 additions and 604 deletions

View file

@ -323,3 +323,17 @@ extern(C)
}
}
extern (C)
{
/* From <dlfcn.h>
* See http://www.opengroup.org/onlinepubs/007908799/xsh/dlsym.html
*/
const int RTLD_NOW = 0x00002; // Correct for Red Hat 8
void* dlopen(char* file, int mode);
int dlclose(void* handle);
void* dlsym(void* handle, char* name);
char* dlerror();
}