about summary refs log tree commit diff
path: root/include/dlfcn.h
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-31 16:12:03 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-31 16:12:03 +0200
commit86e4919f574f0b33db8a7de187c1291710d94f0f (patch)
tree183428475bf56aed406cdbc4f68307ff08b7e45f /include/dlfcn.h
parent59bd52b087671504bff3176e8417e56da1ca2085 (diff)
downloadglibc-86e4919f574f0b33db8a7de187c1291710d94f0f.tar.gz
glibc-86e4919f574f0b33db8a7de187c1291710d94f0f.tar.xz
glibc-86e4919f574f0b33db8a7de187c1291710d94f0f.zip
dlfcn: Remove internal_function attribute
Diffstat (limited to 'include/dlfcn.h')
-rw-r--r--include/dlfcn.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index 51cc1dfde8..888e84d4b8 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -59,23 +59,20 @@ extern void _dl_close_worker (struct link_map *map, bool force)
 /* Look up NAME in shared object HANDLE (which may be RTLD_DEFAULT or
    RTLD_NEXT).  WHO is the calling function, for RTLD_NEXT.  Returns
    the symbol value, which may be NULL.  */
-extern void *_dl_sym (void *handle, const char *name, void *who)
-    internal_function;
+extern void *_dl_sym (void *handle, const char *name, void *who);
 
 /* Look up version VERSION of symbol NAME in shared object HANDLE
    (which may be RTLD_DEFAULT or RTLD_NEXT).  WHO is the calling
    function, for RTLD_NEXT.  Returns the symbol value, which may be
    NULL.  */
 extern void *_dl_vsym (void *handle, const char *name, const char *version,
-		       void *who)
-    internal_function;
+		       void *who);
 
 /* Helper function for <dlfcn.h> functions.  Runs the OPERATE function via
    _dl_catch_error.  Returns zero for success, nonzero for failure; and
    arranges for `dlerror' to return the error details.
    ARGS is passed as argument to OPERATE.  */
-extern int _dlerror_run (void (*operate) (void *), void *args)
-     internal_function;
+extern int _dlerror_run (void (*operate) (void *), void *args);
 
 #ifdef SHARED
 # define DL_CALLER_DECL /* Nothing */