diff options
-rw-r--r-- | src/pulsecore/macro.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/pulsecore/macro.h b/src/pulsecore/macro.h index d0dff5e1..c6bba437 100644 --- a/src/pulsecore/macro.h +++ b/src/pulsecore/macro.h @@ -28,7 +28,7 @@ #include <unistd.h> #include <assert.h> #include <limits.h> -#include <unistd.h> +#include <unistd.h> #include <pulsecore/log.h> @@ -72,6 +72,10 @@ static inline size_t pa_page_align(size_t l) { #define MIN(a, b) ((a) < (b) ? (a) : (b)) #endif +#ifndef CLAMP +#define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) +#endif + /* This type is not intended to be used in exported APIs! Use classic "int" there! */ #ifdef HAVE_STD_BOOL typedef _Bool pa_bool_t; |