1 /*
2  * Copyright (c) 2018, Pinecone Inc. and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 /*
8  * @file	nuttx/log.h
9  * @brief	NuttX libmetal log handler definition.
10  */
11 
12 #ifndef __METAL_METAL_LOG__H__
13 #error "Include metal/log.h instead of metal/nuttx/log.h"
14 #endif
15 
16 #ifndef __METAL_NUTTX_LOG__H__
17 #define __METAL_NUTTX_LOG__H__
18 
19 #include <syslog.h>
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 #endif /* __METAL_NUTTX_LOG__H__ */
30