diff options
| author | Dan Crowell <dcrowell@us.ibm.com> | 2016-06-28 12:39:39 -0500 |
|---|---|---|
| committer | Bill Hoffa <wghoffa@us.ibm.com> | 2016-06-30 13:14:03 -0500 |
| commit | 1ab0fb9ee0d02aba250b7fbfe38ca64ce1a63d3f (patch) | |
| tree | 2969e62ddbdc678ecd0d6c3acb603f663939ab04 /src/include/cstddef | |
| parent | 8549ce536fde780ad3b0bc2e0e3fdf8d63f1d6f4 (diff) | |
| download | talos-hostboot-1ab0fb9ee0d02aba250b7fbfe38ca64ce1a63d3f.tar.gz talos-hostboot-1ab0fb9ee0d02aba250b7fbfe38ca64ce1a63d3f.zip | |
Add cstdlib
Need file to define std::size_t
Also add size_t to cstddef (per spec)
Change-Id: Ic436ea2bcbc75173c89fde2a14d70662b29cdc83
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/26360
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/cstddef')
| -rw-r--r-- | src/include/cstddef | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/cstddef b/src/include/cstddef index 7650c0197..635f373ad 100644 --- a/src/include/cstddef +++ b/src/include/cstddef @@ -1,11 +1,11 @@ /* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ -/* $Source: src/usr/testcore/lib/is_same.H $ */ +/* $Source: src/include/cstddef $ */ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015 */ +/* Contributors Listed Below - COPYRIGHT 2015,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -30,6 +30,7 @@ namespace std { typedef decltype(nullptr) nullptr_t; + using ::size_t; } #endif |

