2018-03-07 21:01:19 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
|
|
*
|
2018-05-26 01:49:13 +08:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2018-03-07 21:01:19 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MACROS_H_
|
|
|
|
#define _MACROS_H_
|
|
|
|
|
|
|
|
#undef __CONCAT
|
|
|
|
|
|
|
|
#define _CONCAT_(a, b) a ## b
|
|
|
|
#define __CONCAT(a, b) _CONCAT_(a, b)
|
|
|
|
|
|
|
|
#endif
|