aboutsummaryrefslogtreecommitdiffstats
path: root/src/macros.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-02-10 12:33:21 -0500
committerDavid Robillard <d@drobilla.net>2023-02-10 12:33:21 -0500
commit929509da52da29ce4d211ad488e580761885bfb0 (patch)
treedaa8aff94020ac085882f104d8ddfcd714ac75f9 /src/macros.h
parented56e89f4c447b37e8a18127f499cd74610fc393 (diff)
downloadpugl-929509da52da29ce4d211ad488e580761885bfb0.tar.gz
pugl-929509da52da29ce4d211ad488e580761885bfb0.tar.bz2
pugl-929509da52da29ce4d211ad488e580761885bfb0.zip
Factor out macros
Diffstat (limited to 'src/macros.h')
-rw-r--r--src/macros.h15
1 files changed, 15 insertions, 0 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