aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/attributes.h')
-rw-r--r--src/attributes.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/attributes.h b/src/attributes.h
deleted file mode 100644
index 11c699f3..00000000
--- a/src/attributes.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2019-2023 David Robillard <d@drobilla.net>
-// SPDX-License-Identifier: ISC
-
-#ifndef SERD_SRC_ATTRIBUTES_H
-#define SERD_SRC_ATTRIBUTES_H
-
-#if defined(__GNUC__)
-# define SERD_LOG_FUNC(fmt, arg1) __attribute__((format(printf, fmt, arg1)))
-#else
-# define SERD_LOG_FUNC(fmt, arg1)
-#endif
-
-#ifdef __GNUC__
-# define SERD_MALLOC_FUNC __attribute__((malloc))
-#else
-# define SERD_MALLOC_FUNC
-#endif
-
-#ifdef __GNUC__
-# define SERD_NODISCARD __attribute__((warn_unused_result))
-#else
-# define SERD_NODISCARD
-#endif
-
-#endif // SERD_SRC_ATTRIBUTES_H