Stefan Weil wrote: > This patch replaces local definitions and declaration > for integral data types by a C99 standard header file. > > This reduces Qemu code, avoids some compiler warnings > because of redefinitions and should make the code more > portable. > > Signed-off-by: Stefan Weil > > Index: trunk/dyngen-exec.h > =================================================================== > --- trunk.orig/dyngen-exec.h 2009-02-06 22:21:41.000000000 +0100 > +++ trunk/dyngen-exec.h 2009-02-06 22:21:42.000000000 +0100 > @@ -31,57 +31,15 @@ > point because host CPU registers are used as global variables. Some > host headers do not allow that. */ > #include > +#include I think the safer and cleaner approach is to remove the last users of legacy dyngen-exec.h and finally kill this file. Jan