summaryrefslogtreecommitdiffstats
path: root/include/link.h
diff options
context:
space:
mode:
authorscrappy <scrappy@FreeBSD.org>1996-10-08 01:38:36 +0000
committerscrappy <scrappy@FreeBSD.org>1996-10-08 01:38:36 +0000
commit03a8558771c05d6b2dcd172bd53cd6915bfba243 (patch)
treef2b98990861ba320660a43d4caa0555e5bd5f24b /include/link.h
parent5e6008239130db765f4c435eef6c07ff4794a7f7 (diff)
downloadFreeBSD-src-03a8558771c05d6b2dcd172bd53cd6915bfba243.zip
FreeBSD-src-03a8558771c05d6b2dcd172bd53cd6915bfba243.tar.gz
Fixed the wrong include file for a "prototype mismatch" error between
dlfcn.h and link.h
Diffstat (limited to 'include/link.h')
-rw-r--r--include/link.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/link.h b/include/link.h
index 0225630..e3e7931 100644
--- a/include/link.h
+++ b/include/link.h
@@ -27,7 +27,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: link.h,v 1.7 1996/10/01 00:25:32 peter Exp $
+ * $Id: link.h,v 1.8 1996/10/07 20:49:03 scrappy Exp $
*/
/*
@@ -184,9 +184,9 @@ struct ld_entry {
/*
* dl*() prototypes.
*/
-extern void *dlopen __P((const char *, int));
+extern void *dlopen __P((char *, int));
extern int dlclose __P((void *));
-extern void *dlsym __P((void *, const char *));
+extern void *dlsym __P((void *, char *));
extern char *dlerror __P((void));
OpenPOWER on IntegriCloud