commit | e056924cd2585f626e43277f8f776bca69d0bc8e | [log] [tgz] |
---|---|---|
author | Howard Hinnant <hhinnant@apple.com> | Fri May 28 18:04:31 2010 +0000 |
committer | Howard Hinnant <hhinnant@apple.com> | Fri May 28 18:04:31 2010 +0000 |
tree | 9ea4d7eac91d3415d8651b3e10368bae49dda77d | |
parent | fcc593875c9e7a45b3ffea76a02cb6e3d9d35f7d [diff] [blame] |
Fixed [support.types]. <cstddef> wasn't definining NULL or offsetof. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@104982 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/cstddef b/include/cstddef index efe0f61..8264a8b 100644 --- a/include/cstddef +++ b/include/cstddef
@@ -34,9 +34,11 @@ */ #include <__config> +#define __need_NULL #define __need_ptrdiff_t #define __need_size_t #include <stddef.h> +#include <stddef.h> #pragma GCC system_header