18 lines
449 B
C
18 lines
449 B
C
/*
|
|
* Copyright (c) 2020, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef __REGION_H__
|
|
#define __REGION_H__
|
|
|
|
/* Macros to pick linker symbols */
|
|
#define REGION(a, b, c) a##b##c
|
|
#define REGION_NAME(a, b, c) REGION(a, b, c)
|
|
#define REGION_DECLARE(a, b, c) extern uint32_t REGION_NAME(a, b, c)
|
|
#define REGION_DECLARE_T(a, b, c, t) extern t REGION_NAME(a, b, c)
|
|
|
|
#endif /* __REGION_H__ */
|