Remove redefinitions of stdint types 57/137057/1
authoru.harbuz <u.harbuz@samsung.com>
Fri, 5 May 2017 09:03:07 +0000 (11:03 +0200)
committerLukasz Kostyra <l.kostyra@samsung.com>
Tue, 4 Jul 2017 08:26:39 +0000 (10:26 +0200)
Change-Id: I36b61f17082e0dc14d4e4f17149b419002ef4365

ssflib/dep/swdss/include/ss_types.h

index 82f9663..89ec412 100755 (executable)
@@ -17,6 +17,8 @@
 #ifndef _SWD_SS_COMMON_H_
 #define _SWD_SS_COMMON_H_
 
+#include <stdint.h>
+
 #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