fix(struct_h): add extern "C" protection to *_struct.h header files.

This commit is contained in:
michael
2017-08-28 18:10:46 +08:00
parent 3161854efb
commit c7173e0d08
18 changed files with 174 additions and 1 deletions

View File

@@ -13,6 +13,11 @@
// limitations under the License.
#ifndef _SOC_SYSCON_STRUCT_H_
#define _SOC_SYSCON_STRUCT_H_
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
union {
struct {
@@ -117,4 +122,8 @@ typedef struct {
volatile uint32_t date; /**/
} syscon_dev_t;
#ifdef __cplusplus
}
#endif
#endif /* _SOC_SYSCON_STRUCT_H_ */