diff options
-rw-r--r-- | src/macros.h | 15 | ||||
-rw-r--r-- | src/x11.c | 9 |
2 files changed, 16 insertions, 8 deletions
diff --git a/src/macros.h b/src/macros.h new file mode 100644 index 0000000..bb21e1b --- /dev/null +++ b/src/macros.h @@ -0,0 +1,15 @@ +// Copyright 2016-2023 David Robillard <d@drobilla.net> +// SPDX-License-Identifier: ISC + +#ifndef PUGL_SRC_MACROS_H +#define PUGL_SRC_MACROS_H + +#ifndef MIN +# define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#endif + +#ifndef MAX +# define MAX(a, b) (((a) > (b)) ? (a) : (b)) +#endif + +#endif // PUGL_SRC_MACROS_H @@ -7,6 +7,7 @@ #include "attributes.h" #include "internal.h" +#include "macros.h" #include "platform.h" #include "types.h" @@ -43,14 +44,6 @@ #include <time.h> #include <unistd.h> -#ifndef MIN -# define MIN(a, b) (((a) < (b)) ? (a) : (b)) -#endif - -#ifndef MAX -# define MAX(a, b) (((a) > (b)) ? (a) : (b)) -#endif - #ifdef __cplusplus # define PUGL_INIT_STRUCT \ {} |