Define NULL to __null in C++, so that it's guaranteed to have the same size as a pointer

llvm-svn: 60355
diff --git a/clang/lib/Headers/stddef.h b/clang/lib/Headers/stddef.h
index d5f4eb9..2c84b4b 100644
--- a/clang/lib/Headers/stddef.h
+++ b/clang/lib/Headers/stddef.h
@@ -33,7 +33,7 @@
 #endif
 
 #ifdef __cplusplus
-#define NULL (0)
+#define NULL __null
 #else
 #define NULL ((void*)0)
 #endif