From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1G9a2T-0000u4-Rn for qemu-devel@nongnu.org; Sun, 06 Aug 2006 00:14:57 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1G9a2R-0000se-NN for qemu-devel@nongnu.org; Sun, 06 Aug 2006 00:14:56 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G9a2R-0000sb-KY for qemu-devel@nongnu.org; Sun, 06 Aug 2006 00:14:55 -0400 Received: from [199.45.160.85] (helo=harmony.bsdimp.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1G9a6N-0003uP-Bl for qemu-devel@nongnu.org; Sun, 06 Aug 2006 00:18:59 -0400 Date: Sat, 05 Aug 2006 21:52:46 -0600 (MDT) Message-Id: <20060805.215246.-399283022.imp@bsdimp.com> Subject: Re: [Qemu-devel] ?off? ide/code editor under linux From: "M. Warner Losh" In-Reply-To: References: Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, lista@nyos.homelinux.net In message: NyOS writes: : #ifndef _FOO_H //capitals! : #define _FOO_H //capitals! You sould avoid using _FOO_H for the define here. That's in the implementation space and strictly speaking off limits to programmers that merely use the system. FOO_H is better, and likely sufficiently unambiguous. Warner