nuttx: unify MIN, MAX and ABS macro definition across the code

Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
Petro Karashchenko 2022-12-21 00:52:30 +02:00 committed by Xiang Xiao
parent 72fdea5c13
commit b107e4f417
54 changed files with 159 additions and 145 deletions

View File

@ -41,12 +41,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef CONFIG_ARMV7M_DCACHE

View File

@ -40,12 +40,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -345,11 +345,11 @@ const struct trace_msg_t g_usb_trace_strings_deverror[] =
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -30,6 +30,10 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#define HCI_VENDOR_MAILBOX_CMD 0xfc8f
/* static net_buf_simple *Xiaomi_buf; */
@ -110,9 +114,6 @@ void bt_coex_handle_specific_evt(uint8_t *p, uint8_t len)
rltk_coex_mailbox_to_wifi(p, len);
}
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
#endif
static const char *bt_hex_real(const void *buf, size_t len)
{
static const char hex[] = "0123456789abcdef";

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -178,11 +178,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -80,11 +80,11 @@
/* Common definitions *******************************************************/
#ifndef MIN
# define MIN(a,b) ((a < b) ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) ((a > b) ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Mailboxes ****************************************************************/

View File

@ -340,8 +340,13 @@
/* Some semi-standard definitions */
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************
* Private Types

View File

@ -210,11 +210,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -214,11 +214,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -236,11 +236,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -273,8 +273,13 @@
/* Some semi-standard definitions */
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************
* Private Types

View File

@ -62,11 +62,11 @@
/* Common definitions *******************************************************/
#ifndef MIN
# define MIN(a,b) ((a < b) ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) ((a > b) ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Clock source *************************************************************/
@ -131,7 +131,7 @@
# define MCAN0_TSEG1 (CONFIG_SAMV7_MCAN0_PROPSEG + CONFIG_SAMV7_MCAN0_PHASESEG1)
# define MCAN0_TSEG2 CONFIG_SAMV7_MCAN0_PHASESEG2
# define MCAN0_BRP ((uint32_t)(((float) SAMV7_MCANCLK_FREQUENCY / \
# define MCAN0_BRP ((uint32_t)(((float)SAMV7_MCANCLK_FREQUENCY / \
((float)(MCAN0_TSEG1 + MCAN0_TSEG2 + 3) * \
(float)CONFIG_SAMV7_MCAN0_BITRATE)) - 1))
# define MCAN0_SJW (CONFIG_SAMV7_MCAN0_FSJW - 1)
@ -148,7 +148,7 @@
# define MCAN0_DTSEG1 (CONFIG_SAMV7_MCAN0_FPROPSEG + CONFIG_SAMV7_MCAN0_FPHASESEG1)
# define MCAN0_DTSEG2 (CONFIG_SAMV7_MCAN0_FPHASESEG2)
# define MCAN0_DBRP ((uint32_t)(((float) SAMV7_MCANCLK_FREQUENCY / \
# define MCAN0_DBRP ((uint32_t)(((float)SAMV7_MCANCLK_FREQUENCY / \
((float)(MCAN0_DTSEG1 + MCAN0_DTSEG2 + 3) * \
(float)CONFIG_SAMV7_MCAN0_FBITRATE)) - 1))
# define MCAN0_DSJW (CONFIG_SAMV7_MCAN0_FFSJW - 1)
@ -416,7 +416,7 @@
# define MCAN1_TSEG1 (CONFIG_SAMV7_MCAN1_PROPSEG + CONFIG_SAMV7_MCAN1_PHASESEG1)
# define MCAN1_TSEG2 CONFIG_SAMV7_MCAN1_PHASESEG2
# define MCAN1_BRP ((uint32_t)(((float) SAMV7_MCANCLK_FREQUENCY / \
# define MCAN1_BRP ((uint32_t)(((float)SAMV7_MCANCLK_FREQUENCY / \
((float)(MCAN1_TSEG1 + MCAN1_TSEG2 + 3) * \
(float)CONFIG_SAMV7_MCAN1_BITRATE)) - 1))
# define MCAN1_SJW (CONFIG_SAMV7_MCAN1_FSJW - 1)
@ -433,7 +433,7 @@
# define MCAN1_DTSEG1 (CONFIG_SAMV7_MCAN1_FPROPSEG + CONFIG_SAMV7_MCAN1_FPHASESEG1)
# define MCAN1_DTSEG2 (CONFIG_SAMV7_MCAN1_FPHASESEG2)
# define MCAN1_DBRP ((uint32_t)(((float) SAMV7_MCANCLK_FREQUENCY / \
# define MCAN1_DBRP ((uint32_t)(((float)SAMV7_MCANCLK_FREQUENCY / \
((float)(MCAN1_DTSEG1 + MCAN1_DTSEG2 + 3) * \
(float)CONFIG_SAMV7_MCAN1_FBITRATE)) - 1))
# define MCAN1_DSJW (CONFIG_SAMV7_MCAN1_FFSJW - 1)

View File

@ -41,12 +41,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -274,11 +274,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -235,11 +235,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -216,11 +216,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -220,11 +220,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -220,11 +220,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -37,14 +37,13 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************
* Private Data
****************************************************************************/

View File

@ -37,12 +37,12 @@
* Pre-processor Definitions
****************************************************************************/
#ifndef MAX
# define MAX(a,b) a > b ? a : b
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) a < b ? a : b
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -271,13 +271,12 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************
* Private Types
****************************************************************************/

View File

@ -243,11 +243,11 @@
/* Ever-present MIN and MAX macros */
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Byte ordering in host-based values */

View File

@ -75,7 +75,7 @@
#define RTC_MODULE_SLEEP_PREPARE_CYCLES (6)
#ifndef MAX
#define MAX(a,b) a > b ? a : b
# define MAX(a,b) ((a) > (b) ? (a) : (b))
#endif
/* Time from VDD_SDIO power up to first flash read in ROM code */
@ -1193,4 +1193,4 @@ uint32_t IRAM_ATTR esp32c3_pm_lockstatus(void)
return pm_wakelock;
}
#endif /* CONFIG_PM */
#endif /* CONFIG_PM */

View File

@ -35,7 +35,7 @@
****************************************************************************/
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef ALIGN_UP

View File

@ -170,7 +170,7 @@
#ifdef MIN
# undef MIN
# define MIN(a,b) (((a)<(b))?(a):(b))
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
/* Check if current TX description is busy */

View File

@ -66,7 +66,7 @@
#define LIGHT_SLEEP_MIN_TIME_US 200
#ifndef MAX
#define MAX(a,b) a > b ? a : b
# define MAX(a,b) ((a) > (b) ? (a) : (b))
#endif
/* Time from VDD_SDIO power up to first flash read in ROM code */
@ -1170,4 +1170,4 @@ uint32_t IRAM_ATTR esp32_pm_lockstatus(void)
return pm_wakelock;
}
#endif /* CONFIG_PM */
#endif /* CONFIG_PM */

View File

@ -61,7 +61,7 @@
#endif
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -58,7 +58,7 @@
#endif
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -71,11 +71,11 @@
/* The ever-present MIN/MAX macros ******************************************/
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* LCD **********************************************************************/

View File

@ -99,10 +99,11 @@
/* Miscellaneous Definitions ************************************************/
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
#define MIN_BUTTON MIN(CONFIG_PM_BUTTONS_MIN, CONFIG_PM_IRQBUTTONS_MIN)

View File

@ -74,11 +74,11 @@
/* The ever-present MIN/MAX macros ******************************************/
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* LCD **********************************************************************/

View File

@ -100,11 +100,11 @@
/* The ever-present MIN/MAX macros ******************************************/
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* LCD **********************************************************************/

View File

@ -45,7 +45,9 @@
* Pre-processor Definitions
****************************************************************************/
#define MAX(a,b) ((a)>(b)?(a):(b))
#ifndef MAX
# define MAX(a,b) ((a) > (b) ? (a) : (b))
#endif
/* Verify that all configuration requirements have been met */

View File

@ -170,11 +170,11 @@
/* MIN/MAX macros */
#ifndef MIN
# define MIN(a,b) ((a)<(b)?(a):(b))
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) ((a)>(b)?(a):(b))
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Trace values *************************************************************/

View File

@ -58,7 +58,7 @@
#define CDCECM_REMOTEWAKEUP (0)
#ifndef MIN
# define MIN(a,b) ((a)<(b)?(a):(b))
# define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#endif /* __DRIVERS_USBDEV_CDCECM_H */

View File

@ -46,11 +46,11 @@
****************************************************************************/
#ifndef MIN
# define MIN(a,b) ((a < b) ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) ((a > b) ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -37,16 +37,16 @@
#define B16_HALFPI 0x00019220 /* 1.570796327 */
#define B16_PI 0x00032440 /* 3.141592654 */
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
#ifndef MAX
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef ABS
# define ABS(a) (a < 0 ? -a : a)
# define ABS(a) ((a) < 0 ? -(a) : (a))
#endif
/****************************************************************************

View File

@ -59,11 +59,11 @@
****************************************************************************/
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) (a > b ? a : b)
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
/* Use the maximim precision with %g format if no precision is specified.

View File

@ -32,7 +32,7 @@
#define FAST_ATAN2_SMALLNUM (1)
#ifndef ABS
# define ABS(a) (a < 0 ? -a : a)
# define ABS(a) ((a) < 0 ? -(a) : (a))
#endif
/****************************************************************************

View File

@ -43,7 +43,7 @@
****************************************************************************/
#ifndef MIN
# define MIN(a,b) (a < b ? a : b)
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
/****************************************************************************

View File

@ -38,7 +38,9 @@
* Pre-processor Definitions
****************************************************************************/
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
#ifndef MIN
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
#define MAX_NAME_LEN 16
#define MAX_SECTOR_DATA (1024 - 10)