From: u.harbuz Date: Fri, 5 May 2017 09:03:07 +0000 (+0200) Subject: Remove redefinitions of stdint types X-Git-Tag: accepted/tizen/4.0/unified/20170919.172518~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8775489320b04cf5b067f1e8018b4a12dec57a07;p=platform%2Fcore%2Fsecurity%2Ftef-simulator.git Remove redefinitions of stdint types Change-Id: I36b61f17082e0dc14d4e4f17149b419002ef4365 --- diff --git a/ssflib/dep/swdss/include/ss_types.h b/ssflib/dep/swdss/include/ss_types.h index 82f9663..89ec412 100755 --- a/ssflib/dep/swdss/include/ss_types.h +++ b/ssflib/dep/swdss/include/ss_types.h @@ -17,6 +17,8 @@ #ifndef _SWD_SS_COMMON_H_ #define _SWD_SS_COMMON_H_ +#include + #define SS_MAX_UUID_LEN 64 #define SS_MAX_MODULE_NAME_LEN 32 #define SS_MAX_DATA_NAME_LEN 128 @@ -84,16 +86,12 @@ typedef struct credential { } ss_credential_s; -typedef unsigned char uint8_t; -typedef unsigned int uint32_t; -typedef unsigned long uint64_t; typedef uint8_t CBT_OCTET; typedef uint8_t* CBT_OCTET_PTR; typedef uint32_t CBT_UINT32; typedef uint32_t* CBT_UINT32_PTR; typedef void* CBT_DATA_PTR; typedef CBT_UINT32 CBT_BOOL; -typedef unsigned short uint16_t; #endif