From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KszD5-0006oN-SG for qemu-devel@nongnu.org; Thu, 23 Oct 2008 08:22:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KszD5-0006oB-8X for qemu-devel@nongnu.org; Thu, 23 Oct 2008 08:22:39 -0400 Received: from [199.232.76.173] (port=51683 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KszD5-0006o8-2x for qemu-devel@nongnu.org; Thu, 23 Oct 2008 08:22:39 -0400 Received: from mx2.redhat.com ([66.187.237.31]:54597) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KszD4-00067S-Rf for qemu-devel@nongnu.org; Thu, 23 Oct 2008 08:22:39 -0400 From: Glauber Costa Date: Thu, 23 Oct 2008 12:18:46 -0200 Message-Id: <1224771556-11146-3-git-send-email-glommer@redhat.com> In-Reply-To: <1224771556-11146-1-git-send-email-glommer@redhat.com> References: <1224771556-11146-1-git-send-email-glommer@redhat.com> Subject: [Qemu-devel] [PATCH 02/32] protect exec-all.h frm multiple inclusion 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 Cc: jan.kiszka@siemens.com, aliguori@us.ibm.com, jes@sgi.com, avi@qumranet.com, dmitry.baryshkov@siemens.com Signed-off-by: Glauber Costa --- exec-all.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/exec-all.h b/exec-all.h index 6609c9a..e3da98a 100644 --- a/exec-all.h +++ b/exec-all.h @@ -18,6 +18,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifndef _EXEC_ALL_H_ +#define _EXEC_ALL_H_ /* allow to see translation results - the slowdown should be negligible, so we leave it */ #define DEBUG_DISAS @@ -385,3 +387,4 @@ static inline int kqemu_is_ok(CPUState *env) } #endif +#endif -- 1.5.5.1