diff options
| author | Sachin Gupta <sgupta2m@in.ibm.com> | 2017-10-09 03:21:04 -0500 |
|---|---|---|
| committer | Joshua Hunsberger <jahunsbe@us.ibm.com> | 2017-10-23 19:33:39 -0500 |
| commit | 7ec4055cf6dc83bd364cd1bd763cd8974f81f9ac (patch) | |
| tree | 94d7c07c511967a722801370e65db9c20f417dfa /import/chips/p9/procedures/ppe | |
| parent | 1c212ae3e1e7b4c92d10c16e5cf85c7533a4d078 (diff) | |
| download | talos-hcode-7ec4055cf6dc83bd364cd1bd763cd8974f81f9ac.tar.gz talos-hcode-7ec4055cf6dc83bd364cd1bd763cd8974f81f9ac.zip | |
Use compiler definition for size_t
We get multiple definition issues if we include ppe42_string.h
as stddef.h also has defined size_t
Change-Id: I44ec000db4df176f36d185842dd8057b2b03e28d
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/48101
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Reviewed-by: Shakeeb A. Pasha B K <shakeebbk@in.ibm.com>
Reviewed-by: Douglas R. Gilbert <dgilbert@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Diffstat (limited to 'import/chips/p9/procedures/ppe')
| -rw-r--r-- | import/chips/p9/procedures/ppe/pk/ppe42/ppe42_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/import/chips/p9/procedures/ppe/pk/ppe42/ppe42_string.h b/import/chips/p9/procedures/ppe/pk/ppe42/ppe42_string.h index 10a440c6..cc7ce0fb 100644 --- a/import/chips/p9/procedures/ppe/pk/ppe42/ppe42_string.h +++ b/import/chips/p9/procedures/ppe/pk/ppe42/ppe42_string.h @@ -26,7 +26,7 @@ #define __STRING_H #include <stdint.h> -typedef uint32_t size_t; +#include <stddef.h> #ifndef NULL #ifdef __cplusplus |

