summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorpk <pk@NetBSD.org>1995-06-05 19:38:00 +0000
committerpk <pk@NetBSD.org>1995-06-05 19:38:00 +0000
commit4003f3244b3c0be0dff3dfa3d9519a6bb25c7d2f (patch)
tree626ec08a5be3c8fd749d843695c7256864f22baa /include
parenta47021162bbf0a737d39ec139e2b20d4b072d1c5 (diff)
{BEGIN,END}DECLS
Diffstat (limited to 'include')
-rw-r--r--include/dlfcn.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index 1f48dcb0546..f61dbad987f 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -1,4 +1,4 @@
-/* $NetBSD: dlfcn.h,v 1.1 1995/06/05 00:08:07 pk Exp $ */
+/* $NetBSD: dlfcn.h,v 1.2 1995/06/05 19:38:00 pk Exp $ */
/*
* Copyright (c) 1995 Paul Kranenburg
@@ -38,11 +38,13 @@
/*
* User interface to the run-time linker.
*/
+__BEGIN_DECLS
extern void *dlopen __P((char *, int));
extern int dlclose __P((void *));
extern void *dlsym __P((void *, char *));
extern int dlctl __P((void *, int, void *));
extern char *dlerror __P((void));
+__END_DECLS
/* Values for dlopen `mode'. */
#define DL_LAZY 1