1
Fork 0

spa: utils: add `SPA_CONCAT()` macro

This commit is contained in:
Barnabás Pőcze 2023-12-23 18:40:14 +01:00 committed by Wim Taymans
parent d26916828d
commit da7cf84f95
1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,9 @@ extern "C" {
#define SPA_STATIC_ASSERT(expr, ...) SPA_STATIC_ASSERT_IMPL(expr, ## __VA_ARGS__, "`" #expr "` evaluated to false")
#define SPA_CONCAT_NOEXPAND(a, b) a ## b
#define SPA_CONCAT(a, b) SPA_CONCAT_NOEXPAND(a, b)
#include <inttypes.h>
#include <signal.h>
#include <stdlib.h>