From bc3c5dc7670b825effe135f5de18ba04d7b4f7fe Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Fri, 28 May 2010 18:04:31 +0000 Subject: [PATCH] Fixed [support.types]. wasn't definining NULL or offsetof. llvm-svn: 104982 --- libcxx/include/cstddef | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcxx/include/cstddef b/libcxx/include/cstddef index efe0f61c7552..8264a8b29cae 100644 --- a/libcxx/include/cstddef +++ b/libcxx/include/cstddef @@ -34,9 +34,11 @@ Types: */ #include <__config> +#define __need_NULL #define __need_ptrdiff_t #define __need_size_t #include +#include #pragma GCC system_header