Helper Reference Manual  1.7.1
deprecated.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2017-2018 Linaro Limited
3  * Copyright (c) 2021 Nokia
4  */
5 
12 #ifndef ODPH_DEPRECATED_H_
13 #define ODPH_DEPRECATED_H_
14 
15 #include <odp/helper/autoheader_external.h>
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
27 #if ODPH_DEPRECATED_API
28 #define ODPH_DEPRECATE(x) x
29 #else
30 #define ODPH_DEPRECATE(x) _deprecated_ ## x
31 #endif
32 
33 #ifdef __cplusplus
34 }
35 #endif
36 
37 #endif