From d5e9426b9605264608e0b1204ebf818103f1f011 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Mon, 21 Jan 2013 10:27:25 -0800 Subject: build: Move src/mapi/mapi/* to src/mapi/ Tested-by: Emil Velikov Reviewed-and-Tested-by: Andreas Boll Reviewed-by: Jordan Justen --- src/mapi/u_macros.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/mapi/u_macros.h (limited to 'src/mapi/u_macros.h') diff --git a/src/mapi/u_macros.h b/src/mapi/u_macros.h new file mode 100644 index 00000000000..72345b5f156 --- /dev/null +++ b/src/mapi/u_macros.h @@ -0,0 +1,12 @@ +#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_ */ -- cgit v1.2.3