Fixed prototyping of dlopen/dlsym in dlfcn.h, to match how crt0.c defines

it and link.h prototypes it

Error of my ways pointed out by Peter
This commit is contained in:
Marc G. Fournier 1996-10-08 01:41:51 +00:00
parent 524e95de2b
commit d453b6a53d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18802

View file

@ -38,8 +38,8 @@
#include <sys/cdefs.h>
__BEGIN_DECLS
void *dlopen __P((const char *, int));
void *dlsym __P((void *, const char *));
void *dlopen __P((char *, int));
void *dlsym __P((void *, char *));
char *dlerror __P((void));
int dlclose __P((void *));
__END_DECLS