]> Git Repo - qemu.git/commit
osdep: Remove local definition of macro offsetof
authorStefan Weil <[email protected]>
Mon, 5 Mar 2012 06:22:31 +0000 (07:22 +0100)
committerStefan Hajnoczi <[email protected]>
Thu, 8 Mar 2012 15:22:12 +0000 (15:22 +0000)
commit82246040eaaeec8c53e87b2beff5488f6078bf35
tree9fa9e550bddbf056b37c29f1e8e30e502a9cb829
parent4a84ebe6a6b64c823e33876e3cda3c0813b2e1bb
osdep: Remove local definition of macro offsetof

The macro offsetof is defined in stddef.h. It is conforming to
the standards C89, C99 and POSIX.1-2001 (see man page), so it
is a sufficiently old standard.

Therefore chances are very high that QEMU never needs a local
definition of this macro.

osdep.h already includes stddef.h, so this patch simply removes
the unneeded code from the files configure and osdep.h.

If we ever need the local definition again, it should be added
to compiler.h (the macro is usually provided with the compiler,
it is not OS specific).

Signed-off-by: Stefan Weil <[email protected]>
Signed-off-by: Stefan Hajnoczi <[email protected]>
configure
osdep.h
This page took 0.026648 seconds and 4 git commands to generate.