summaryrefslogtreecommitdiff
path: root/include/dlfcn.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-11-23 17:31:31 +0000
committerUlrich Drepper <drepper@redhat.com>1999-11-23 17:31:31 +0000
commitaaa8d85c286eace542b14f1030ace7f3cb20ab95 (patch)
treee830234695e83e56a140032c9363c18e8ee90523 /include/dlfcn.h
parentc19559b0bcec2afce4952ea4bbc8724a7a99bd6a (diff)
Update.
1999-11-23 Thorsten Kukuk <kukuk@suse.de> * iconv/skeleton.c: Don't access next_step->fct if datat->is_last is true. 1999-11-23 Andreas Jaeger <aj@suse.de> * include/sys/select.h: Remove K&R compatibility. * include/sys/statfs.h: Likewise. * include/gnu/libc-version.h: Likewise. * include/db_185.h: Likewise. * include/dlfcn.h: Likewise. * include/search.h: Likewise. * include/setjmp.h: Likewise. * include/signal.h: Likewise. * include/stdio.h: Likewise. * include/unistd.h: Likewise.
Diffstat (limited to 'include/dlfcn.h')
-rw-r--r--include/dlfcn.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index 72b9b0e83d..a2398c4c93 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -2,12 +2,12 @@
#include <dlfcn/dlfcn.h>
/* Now define the internal interfaces. */
-extern void *__dlvsym __P ((void *__handle, __const char *__name,
- __const char *__version));
+extern void *__dlvsym (void *__handle, __const char *__name,
+ __const char *__version);
-extern void *__libc_dlopen __P ((__const char *__name));
-extern void *__libc_dlsym __P ((void *__map, __const char *__name));
-extern int __libc_dlclose __P ((void *__map));
+extern void *__libc_dlopen (__const char *__name);
+extern void *__libc_dlsym (void *__map, __const char *__name);
+extern int __libc_dlclose (void *__map);
/* Locate shared object containing the given address. */
extern int _dl_addr (const void *address, Dl_info *info)