mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-21 08:58:10 +02:00
Tested-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-and-Tested-by: Andreas Boll <andreas.boll.dev@gmail.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
12 lines
281 B
C
12 lines
281 B
C
#ifndef _U_MACROS_
|
|
#define _U_MACROS_
|
|
|
|
#define _U_STRINGIFY(x) #x
|
|
#define _U_CONCAT(x, y) x ## y
|
|
#define _U_CONCAT_STR(x, y) #x#y
|
|
|
|
#define U_STRINGIFY(x) _U_STRINGIFY(x)
|
|
#define U_CONCAT(x, y) _U_CONCAT(x, y)
|
|
#define U_CONCAT_STR(x, y) _U_CONCAT_STR(x, y)
|
|
|
|
#endif /* _U_MACROS_ */
|