1#ifndef PLATFORM_DATA_X86_APPLE_H 2#define PLATFORM_DATA_X86_APPLE_H 3 4#ifdef CONFIG_X86 5/**
6 * x86_apple_machine - whether the machine is an x86 Apple Macintosh
7 */ 8externboolx86_apple_machine; 9#else10#define x86_apple_machine false11#endif1213#endif