Got the code installed, mostly made, but when I get to handle.o, I get
implicit declaration of dlclose/dlopen
RTLD_LAZY undeclared
pointer to interger without a cast
Any clues?
Nevermind. I've decided to go without it just so I can learn to do things the hard way so I can appreciate the easy way. Maybe between now and then I'll figure out what I'm doing for real :-P
Been a while since I've worked with the dlsym stuff, but try adding this
to the top of your handler.c file.
handler.c ? Why are you making dlsym related changes to that file? It's not part of the instructions.
You should have this up in the includes on the tops of these files:
act_wiz.c:#include <dlfcn.h>
db.c:#include <dlfcn.h>
skills.c:#include <dlfcn.h>
special.c:#include <dlfcn.h>
tables.c:#include <dlfcn.h>