From: Hyotaek Shim Date: Thu, 13 Jan 2022 03:55:39 +0000 (+0900) Subject: Add define check for __SENSOR_INTERNAL_H__ X-Git-Tag: submit/tizen/20220127.011830~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F43%2F269343%2F1;p=platform%2Fcore%2Fapi%2Fsensor.git Add define check for __SENSOR_INTERNAL_H__ Change-Id: I6d0e74a3e73ea4be8743ff5fd93363564bc7c1c2 Signed-off-by: Hyotaek Shim --- diff --git a/include/sensor-internal.h b/include/sensor-internal.h index fa12411..04ef69a 100644 --- a/include/sensor-internal.h +++ b/include/sensor-internal.h @@ -14,6 +14,9 @@ * limitations under the License. */ +#ifndef __SENSOR_INTERNAL_H__ +#define __SENSOR_INTERNAL_H__ + #include #include @@ -55,3 +58,5 @@ int sensor_util_get_attribute_int(sensor_type_e type, sensor_attribute_e attr, i #ifdef __cplusplus } #endif + +#endif /* __SENSOR_INTERNAL_H__ */