Date: Mon, 7 Oct 1996 13:49:05 -0700 (PDT) From: "Marc G. Fournier" <scrappy> To: CVS-committers, cvs-all, cvs-include Subject: cvs commit: src/include link.h Message-ID: <199610072049.NAA27239@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
scrappy 96/10/07 13:49:05 Modified: include link.h Log: dlfcn.h and link.h have conflicting declarations for dlopen/dlsym, with dlfcn.h declaring them as: void *dlopen __P((const char *, int)); void *dlsym __P((void *, const char *)); while link.h declared them as extern void *dlopen __P((char *, int)); extern void *dlsym __P((void *, char *)); Fix link.h to match dlfcn.h Revision Changes Path 1.8 +3 -3 src/include/link.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199610072049.NAA27239>