aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/attributes.h')
-rw-r--r--src/attributes.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/attributes.h b/src/attributes.h
new file mode 100644
index 0000000..88a3e41
--- /dev/null
+++ b/src/attributes.h
@@ -0,0 +1,15 @@
+// Copyright 2022 David Robillard <d@drobilla.net>
+// SPDX-License-Identifier: ISC
+
+#ifndef JALV_ATTRIBUTES_H
+#define JALV_ATTRIBUTES_H
+
+#ifdef __cplusplus
+# define JALV_BEGIN_DECLS extern "C" {
+# define JALV_END_DECLS }
+#else
+# define JALV_BEGIN_DECLS
+# define JALV_END_DECLS
+#endif
+
+#endif // JALV_ATTRIBUTES_H