Clean up decorations and whitespace around header guards

Cleaned up with scripts/clean-header-guards.pl.

Backports commit 175de52487ce0b0c78daa4cdf41a5a465a168a25 from qemu
This commit is contained in:
Markus Armbruster 2018-02-25 04:25:59 -05:00 committed by Lioncash
parent 1275b9b459
commit c2ffbc575d
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7
9 changed files with 10 additions and 9 deletions

View file

@ -1,5 +1,5 @@
#ifndef GEN_ICOUNT_H
#define GEN_ICOUNT_H 1
#define GEN_ICOUNT_H
#include "qemu/timer.h"

View file

@ -2,7 +2,7 @@
This one expands generation functions for tcg opcodes. */
#ifndef HELPER_GEN_H
#define HELPER_GEN_H 1
#define HELPER_GEN_H
#include "exec/helper-head.h"

View file

@ -2,7 +2,7 @@
This one expands prototypes for the helper functions. */
#ifndef HELPER_PROTO_H
#define HELPER_PROTO_H 1
#define HELPER_PROTO_H
#include "exec/helper-head.h"

View file

@ -2,7 +2,7 @@
This one defines data structures private to tcg.c. */
#ifndef HELPER_TCG_H
#define HELPER_TCG_H 1
#define HELPER_TCG_H
#include "exec/helper-head.h"

View file

@ -773,4 +773,4 @@ static inline int float128_is_any_nan(float128 a)
*----------------------------------------------------------------------------*/
float128 float128_default_nan(float_status *status);
#endif /* !SOFTFLOAT_H */
#endif /* SOFTFLOAT_H */

View file

@ -201,4 +201,4 @@ void apic_enable_vapic(struct uc_struct *uc, DeviceState *d, hwaddr paddr);
void vapic_report_tpr_access(DeviceState *dev, CPUState *cpu, target_ulong ip,
TPRAccess access);
#endif /* !QEMU_APIC_INTERNAL_H */
#endif /* QEMU_APIC_INTERNAL_H */

View file

@ -1,5 +1,5 @@
#ifndef QEMU_CUTILS_H
#define QEMU_CUTILS_H 1
#define QEMU_CUTILS_H
#include "qemu/fprintf-fn.h"

View file

@ -6,7 +6,7 @@
*/
#ifndef QEMU_FPRINTF_FN_H
#define QEMU_FPRINTF_FN_H 1
#define QEMU_FPRINTF_FN_H
#include "qemu/compiler.h"
#include <stdio.h>

View file

@ -22,8 +22,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef HOST_UTILS_H
#define HOST_UTILS_H 1
#define HOST_UTILS_H
#include "qemu/compiler.h" /* QEMU_GNUC_PREREQ */
#include "qemu/bswap.h"