From owner-cvs-include Mon Oct 7 17:53:57 1996 Return-Path: owner-cvs-include Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id RAA14594 for cvs-include-outgoing; Mon, 7 Oct 1996 17:53:57 -0700 (PDT) Received: from spinner.DIALix.COM (root@spinner.DIALix.COM [192.203.228.67]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id RAA14585; Mon, 7 Oct 1996 17:53:50 -0700 (PDT) Received: from spinner.DIALix.COM (peter@localhost.DIALix.oz.au [127.0.0.1]) by spinner.DIALix.COM (8.8.0/8.8.0) with ESMTP id IAA09397; Tue, 8 Oct 1996 08:53:45 +0800 (WST) Message-Id: <199610080053.IAA09397@spinner.DIALix.COM> X-Mailer: exmh version 1.6.7 5/3/96 To: "Marc G. Fournier" cc: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-include@freefall.freebsd.org Subject: Re: cvs commit: src/include link.h In-reply-to: Your message of "Mon, 07 Oct 1996 13:49:05 MST." <199610072049.NAA27239@freefall.freebsd.org> Date: Tue, 08 Oct 1996 08:53:44 +0800 From: Peter Wemm Sender: owner-cvs-include@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk "Marc G. Fournier" wrote: > dlfcn.h and link.h have conflicting declarations for dlopen/dlsym, > with dlfcn.h declaring them as: > > void *dlopen __P((const char *, int)); > void *dlsym __P((void *, const char *)); > > while link.h declared them as > > extern void *dlopen __P((char *, int)); > extern void *dlsym __P((void *, char *)); > > Fix link.h to match dlfcn.h Umm... They are actually implemented as in link.h not dlfcn.h.. Now lib/csu/i386 doesn't compile... Cheers, -Peter