#ifndef CLIB_MACROS_H #define CLIB_MACROS_H /* ** $VER: macros.h 47.1 (28.6.2019) ** ** C prototypes. ** ** Copyright (C) 2020 Hyperion Entertainment CVBA. ** Developed under license. */ #define MAX(a,b) ((a)>(b)?(a):(b)) #define MIN(a,b) ((a)<(b)?(a):(b)) #define ABS(x) ((x<0)?(-(x)):(x)) #endif /* CLIB_MACROS_H */