From 8f2f27b62b058509db0233c600902f6dddb00867 Mon Sep 17 00:00:00 2001 From: yuhanshi Date: Fri, 28 Apr 2023 17:27:12 +0800 Subject: [PATCH] Remove cpp programming style and include header for bool Signed-off-by: yuhanshi --- interfaces/kits/c/neural_network_runtime_type.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/interfaces/kits/c/neural_network_runtime_type.h b/interfaces/kits/c/neural_network_runtime_type.h index 3bbbb4c..d97fd03 100644 --- a/interfaces/kits/c/neural_network_runtime_type.h +++ b/interfaces/kits/c/neural_network_runtime_type.h @@ -36,8 +36,9 @@ #ifndef NEURAL_NETWORK_RUNTIME_TYPE_H #define NEURAL_NETWORK_RUNTIME_TYPE_H -#include -#include +#include "stdbool.h" +#include "stddef.h" +#include "stdint.h" #ifdef __cplusplus extern "C" { -- Gitee