This repository has been archived by the owner on Oct 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PCO Vers. 1.0.2 - Updated protected IF persComTypes.h :
Allow support of the standard C99 instead of redeclaration. Change-Id: Ie62e2c6466fc73c2d054c115627a2387db3eb964 Signed-off-by: Petrica Manoila <[email protected]>
- Loading branch information
Petrica Manoila
committed
Sep 16, 2014
1 parent
bbe6881
commit 538a645
Showing
4 changed files
with
23 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* Copyright (C) 2012 Continental Automotive Systems, Inc. | ||
* | ||
* Author: [email protected] | ||
* Author: [email protected], [email protected] | ||
* | ||
* Interface: protected - Type and constant definitions. | ||
* | ||
|
@@ -17,12 +17,17 @@ | |
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
* | ||
* Date Author Reason | ||
* 2013.02.05 uidl9757 1.0.0.0 CSP_WZ#TODO: CoC_SSW:Persistence: interface that defines type and constants | ||
* 2014.09.12 uid66235 1.0.1.0 GENIVI:allow support of the standard C99 instead of redeclaration | ||
* 2013.02.05 uidl9757 1.0.0.0 CoC_SSW:Persistence: interface that defines type and constants | ||
* | ||
**********************************************************************************************************************/ | ||
|
||
#include <stdbool.h> | ||
|
||
#ifdef _ISOC99_SOURCE | ||
#include <stdint.h> | ||
#endif | ||
|
||
#ifndef char_t | ||
typedef char char_t ; | ||
#endif | ||
|
@@ -74,10 +79,12 @@ typedef __s16 INT16; | |
typedef __s32 INT32; | ||
typedef __s64 INT64; | ||
|
||
#ifndef _ISOC99_SOURCE | ||
typedef __u8 uint8_t; | ||
typedef __u16 uint16_t; | ||
typedef __u32 uint32_t; | ||
typedef __u64 uint64_t; | ||
#endif | ||
|
||
/** | ||
* \brief 8 bit signed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters