From d453b6a53d05bb0d7e31cdccae794ffe3b0c0378 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Tue, 8 Oct 1996 01:41:51 +0000 Subject: 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 --- lib/csu/i386/dlfcn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/csu/i386/dlfcn.h b/lib/csu/i386/dlfcn.h index e1e63ca9ff70..51746d6bbdbb 100644 --- a/lib/csu/i386/dlfcn.h +++ b/lib/csu/i386/dlfcn.h @@ -38,8 +38,8 @@ #include __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 -- cgit v1.3