Must use "#elif" instead of "#elseif"

date	2001.08.16.17.25.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:48:03 +00:00
parent fbd2ecd5cd
commit 6249072795

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acmacros.h - C macros for the entire subsystem.
* $Revision: 1.84 $
* $Revision: 1.85 $
*
*****************************************************************************/
@ -172,9 +172,9 @@
#define ACPI_STORE_ADDRESS(a,b) {(a).Hi=0;(a).Lo=(b);}
#define ACPI_VALID_ADDRESS(a) ((a).Hi | (a).Lo)
#elseif ACPI_NO_INTEGER64_SUPPORT
#elif ACPI_NO_INTEGER64_SUPPORT
/*
* ACPI_INTEGER is 32-bits, no 64-bit support for whatever reason
* ACPI_INTEGER is 32-bits, no 64-bit support on this platform
*/
#ifndef LODWORD
#define LODWORD(l) ((UINT32)(l))