From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53352) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W34B6-0003CN-Ew for qemu-devel@nongnu.org; Tue, 14 Jan 2014 08:37:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W34Aw-0003O0-FT for qemu-devel@nongnu.org; Tue, 14 Jan 2014 08:37:12 -0500 Received: from mail-pa0-x235.google.com ([2607:f8b0:400e:c03::235]:49810) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W34Aw-0003Np-7v for qemu-devel@nongnu.org; Tue, 14 Jan 2014 08:37:02 -0500 Received: by mail-pa0-f53.google.com with SMTP id lj1so1259163pab.40 for ; Tue, 14 Jan 2014 05:37:01 -0800 (PST) Date: Tue, 14 Jan 2014 21:36:57 +0800 From: Stefan Hajnoczi Message-ID: <20140114133657.GD2995@stefanha-thinkpad> References: <20140109144123.21800.45879.stgit@fimbulvetr.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20140109144123.21800.45879.stgit@fimbulvetr.bsc.es> Subject: Re: [Qemu-devel] [PATCH] trace: [simple] Do not include "trace/simple.h" in generated tracer headers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?iso-8859-1?Q?Llu=EDs?= Vilanova Cc: qemu-devel@nongnu.org, Stefan Hajnoczi On Thu, Jan 09, 2014 at 03:41:23PM +0100, Lluís Vilanova wrote: > diff --git a/trace/simple.c b/trace/simple.c > index 1e3f691..8b59760 100644 > --- a/trace/simple.c > +++ b/trace/simple.c > @@ -8,6 +8,8 @@ > * > */ > > +#include "trace/simple.h" > + > #include > #include > #include Please put user-defined header #includes (<>) below system header #includes (""). This ensures we don't define macros that affect system headers.