From owner-freebsd-hackers@FreeBSD.ORG Tue Nov 18 03:38:04 2003 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4AB716A4CE for ; Tue, 18 Nov 2003 03:38:04 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 997EE43FB1 for ; Tue, 18 Nov 2003 03:38:03 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 5E0DE65213; Tue, 18 Nov 2003 11:38:02 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 45050-01; Tue, 18 Nov 2003 11:38:02 +0000 (GMT) Received: from saboteur.dek.spc.org (unknown [82.147.19.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 789A7651F1; Tue, 18 Nov 2003 11:38:01 +0000 (GMT) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id F0BAD5; Tue, 18 Nov 2003 11:37:48 +0000 (GMT) Date: Tue, 18 Nov 2003 11:37:48 +0000 From: Bruce M Simpson To: lucy loo Message-ID: <20031118113748.GF87527@saboteur.dek.spc.org> Mail-Followup-To: lucy loo , freebsd-hackers@freebsd.org References: <20031118083937.63444.qmail@web21509.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031118083937.63444.qmail@web21509.mail.yahoo.com> cc: freebsd-hackers@freebsd.org Subject: Re: Conflict between & ... ? X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Nov 2003 11:38:04 -0000 On Tue, Nov 18, 2003 at 12:39:37AM -0800, lucy loo wrote: > I am writing a kernel loadable module to reimplement some system calls. I have included , , etc. -- very standard header files for kld implmentation. I also want to do file i/o in this module, therefore I need to include . But it obviously conflicts with those , and make won't pass. RTFM - particularly style(9), do not include userland headers in the kernel. BMS