Added internal divide functions for 64-bit integer divide/modulo

date	2001.09.14.23.05.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:48:14 +00:00
parent b08a0bb9a9
commit 22d6582010

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acmacros.h - C macros for the entire subsystem.
* $Revision: 1.94 $
* $Revision: 1.95 $
*
*****************************************************************************/
@ -288,11 +288,6 @@
#define MUL_16(a) _MUL(a,4)
#define MOD_16(a) _MOD(a,16)
/*
* Divide and Modulo
*/
#define ACPI_DIVIDE(n,d) ((n) / (d))
#define ACPI_MODULO(n,d) ((n) % (d))
/*
* Rounding macros (Power of two boundaries only)