From e056924cd2585f626e43277f8f776bca69d0bc8e 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. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@104982 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/cstddef | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/cstddef b/include/cstddef index efe0f61c7..8264a8b29 100644 --- a/include/cstddef +++ b/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