mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
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:
parent
524e95de2b
commit
d453b6a53d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18802
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user