ROFL-hal  v0.6.0dev
hal_utils.h
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 
5 #ifndef HAL_UTILS_H
6 #define HAL_UTILS_H
7 
8 /* Extern C for C++ linkage */
9 
10 #ifdef __cplusplus
11  # define HAL_BEGIN_DECLS extern "C" {
12  # define HAL_END_DECLS }
13 #else
14  # define HAL_BEGIN_DECLS
15  # define HAL_END_DECLS
16 #endif
17 
18 #endif /* HAL_UTILS_H */