// Copyright 2019-2020 David Robillard // SPDX-License-Identifier: ISC #ifndef SERD_ATTRIBUTES_H #define SERD_ATTRIBUTES_H #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_ATTRIBUTES_H