API Reference Manual  1.45.0
spec/deprecated.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2017-2018 Linaro Limited
3  */
4 
11 #ifndef ODP_API_SPEC_DEPRECATED_H_
12 #define ODP_API_SPEC_DEPRECATED_H_
13 #include <odp/visibility_begin.h>
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
29 #define ODP_DEPRECATED_API 0
30 
37 #if ODP_DEPRECATED_API
38 #define ODP_DEPRECATE(x) x
39 #else
40 #define ODP_DEPRECATE(x) _deprecated_ ## x
41 #endif
42 
43 #ifdef __cplusplus
44 }
45 #endif
46 
47 #include <odp/visibility_end.h>
48 #endif