diff options
| author | Nick Bofferding <bofferdn@us.ibm.com> | 2011-10-20 22:47:21 -0500 |
|---|---|---|
| committer | Nicholas E. Bofferding <bofferdn@us.ibm.com> | 2011-10-25 21:03:25 -0500 |
| commit | 446e41da2bde65a199853230e235b0ffa631b0a8 (patch) | |
| tree | 307a0bd52dae6220526dbe86c67433dc7660010d /src/include/stdint.h | |
| parent | 0f6e334655d2eb7026e9f992a1b32b6d37915563 (diff) | |
| download | talos-hostboot-446e41da2bde65a199853230e235b0ffa631b0a8.tar.gz talos-hostboot-446e41da2bde65a199853230e235b0ffa631b0a8.zip | |
Add support for targeting features
- Support enums inside of complex types
- Support native types (EntityPath) inside complex types
- Support integer types (int8,int16,int32,int64)
- Determine PNOR virtual base address from host boot code
- Allow reuse of enums across multiple attributes
Change-Id: I56501b79f354c83310e86854d27de8ce9be61952
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/454
Tested-by: Jenkins Server
Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com>
Diffstat (limited to 'src/include/stdint.h')
| -rw-r--r-- | src/include/stdint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/stdint.h b/src/include/stdint.h index c3e708b25..1f9ed95b9 100644 --- a/src/include/stdint.h +++ b/src/include/stdint.h @@ -25,7 +25,7 @@ #include <stddef.h> -typedef char int8_t; +typedef signed char int8_t; typedef short int int16_t; typedef int int32_t; typedef long int int64_t; |

