Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3561 → Rev 3562

/branches/dynload/uspace/lib/rtld/include/rtld.h
41,6 → 41,15
#include <dynamic.h>
#include <module.h>
 
/* Define to enable debugging mode. */
#undef RTLD_DEBUG
 
#ifdef RTLD_DEBUG
#define DPRINTF(format, ...) printf(format, ##__VA_ARGS__);
#else
#define DPRINTF(format, ...)
#endif
 
typedef struct {
elf_dyn_t *rtld_dynamic;
module_t rtld;