diff options
author | scrappy <scrappy@FreeBSD.org> | 1996-10-08 01:38:36 +0000 |
---|---|---|
committer | scrappy <scrappy@FreeBSD.org> | 1996-10-08 01:38:36 +0000 |
commit | 03a8558771c05d6b2dcd172bd53cd6915bfba243 (patch) | |
tree | f2b98990861ba320660a43d4caa0555e5bd5f24b /include | |
parent | 5e6008239130db765f4c435eef6c07ff4794a7f7 (diff) | |
download | FreeBSD-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')
-rw-r--r-- | include/link.h | 6 |
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)); |