aboutsummaryrefslogtreecommitdiff
path: root/include/dlfcn.h
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>2002-05-29 19:35:13 +0000
committerGarrett Wollman <wollman@FreeBSD.org>2002-05-29 19:35:13 +0000
commitfda2301943c10ee6e10a1c26d835bbff867adc1a (patch)
tree137ba4d0ee0c9d32e3e8610e6a77f9429ffb3ba3 /include/dlfcn.h
parentf7e0360261fdea2409c0fb96520abad759964e40 (diff)
Notes
Diffstat (limited to 'include/dlfcn.h')
-rw-r--r--include/dlfcn.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index 38a38be072638..dcbb6c41078dd 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -76,7 +76,7 @@ struct __dlfunc_arg {
int __dlfunc_dummy;
};
-typedef void (*__dlfunc_t)(struct __dlfunc_arg);
+typedef void (*dlfunc_t)(struct __dlfunc_arg);
__BEGIN_DECLS
/* XSI functions first */
@@ -87,7 +87,7 @@ void *dlsym(void * /* __restrict */, const char * /* __restrict */);
#if __BSD_VISIBLE
int dladdr(const void *, Dl_info *);
-__dlfunc_t dlfunc(void * /* __restrict */, const char * /* __restrict */);
+dlfunc_t dlfunc(void * /* __restrict */, const char * /* __restrict */);
void dllockinit(void *_context,
void *(*_lock_create)(void *_context),
void (*_rlock_acquire)(void *_lock),