mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-07-07 13:40:34 +00:00
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:
parent
1275b9b459
commit
c2ffbc575d
|
@ -1,5 +1,5 @@
|
||||||
#ifndef GEN_ICOUNT_H
|
#ifndef GEN_ICOUNT_H
|
||||||
#define GEN_ICOUNT_H 1
|
#define GEN_ICOUNT_H
|
||||||
|
|
||||||
#include "qemu/timer.h"
|
#include "qemu/timer.h"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
This one expands generation functions for tcg opcodes. */
|
This one expands generation functions for tcg opcodes. */
|
||||||
|
|
||||||
#ifndef HELPER_GEN_H
|
#ifndef HELPER_GEN_H
|
||||||
#define HELPER_GEN_H 1
|
#define HELPER_GEN_H
|
||||||
|
|
||||||
#include "exec/helper-head.h"
|
#include "exec/helper-head.h"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
This one expands prototypes for the helper functions. */
|
This one expands prototypes for the helper functions. */
|
||||||
|
|
||||||
#ifndef HELPER_PROTO_H
|
#ifndef HELPER_PROTO_H
|
||||||
#define HELPER_PROTO_H 1
|
#define HELPER_PROTO_H
|
||||||
|
|
||||||
#include "exec/helper-head.h"
|
#include "exec/helper-head.h"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
This one defines data structures private to tcg.c. */
|
This one defines data structures private to tcg.c. */
|
||||||
|
|
||||||
#ifndef HELPER_TCG_H
|
#ifndef HELPER_TCG_H
|
||||||
#define HELPER_TCG_H 1
|
#define HELPER_TCG_H
|
||||||
|
|
||||||
#include "exec/helper-head.h"
|
#include "exec/helper-head.h"
|
||||||
|
|
||||||
|
|
|
@ -773,4 +773,4 @@ static inline int float128_is_any_nan(float128 a)
|
||||||
*----------------------------------------------------------------------------*/
|
*----------------------------------------------------------------------------*/
|
||||||
float128 float128_default_nan(float_status *status);
|
float128 float128_default_nan(float_status *status);
|
||||||
|
|
||||||
#endif /* !SOFTFLOAT_H */
|
#endif /* SOFTFLOAT_H */
|
||||||
|
|
|
@ -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,
|
void vapic_report_tpr_access(DeviceState *dev, CPUState *cpu, target_ulong ip,
|
||||||
TPRAccess access);
|
TPRAccess access);
|
||||||
|
|
||||||
#endif /* !QEMU_APIC_INTERNAL_H */
|
#endif /* QEMU_APIC_INTERNAL_H */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef QEMU_CUTILS_H
|
#ifndef QEMU_CUTILS_H
|
||||||
#define QEMU_CUTILS_H 1
|
#define QEMU_CUTILS_H
|
||||||
|
|
||||||
#include "qemu/fprintf-fn.h"
|
#include "qemu/fprintf-fn.h"
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef QEMU_FPRINTF_FN_H
|
#ifndef QEMU_FPRINTF_FN_H
|
||||||
#define QEMU_FPRINTF_FN_H 1
|
#define QEMU_FPRINTF_FN_H
|
||||||
|
|
||||||
#include "qemu/compiler.h"
|
#include "qemu/compiler.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -22,8 +22,9 @@
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef HOST_UTILS_H
|
#ifndef HOST_UTILS_H
|
||||||
#define HOST_UTILS_H 1
|
#define HOST_UTILS_H
|
||||||
|
|
||||||
#include "qemu/compiler.h" /* QEMU_GNUC_PREREQ */
|
#include "qemu/compiler.h" /* QEMU_GNUC_PREREQ */
|
||||||
#include "qemu/bswap.h"
|
#include "qemu/bswap.h"
|
||||||
|
|
Loading…
Reference in a new issue