Include stddef.h so NULL is defined.
Review URL: https://codereview.appspot.com/10025043

git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2422 736b8ea6-26fd-11df-bfd4-992fa37f6226
diff --git a/src/common/angleutils.h b/src/common/angleutils.h
index 31ac559..9761567 100644
--- a/src/common/angleutils.h
+++ b/src/common/angleutils.h
@@ -9,6 +9,8 @@
 #ifndef COMMON_ANGLEUTILS_H_
 #define COMMON_ANGLEUTILS_H_
 
+#include <stddef.h>
+
 // A macro to disallow the copy constructor and operator= functions
 // This must be used in the private: declarations for a class
 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
diff --git a/src/common/version.h b/src/common/version.h
index 709c9f9..2b2560f 100644
--- a/src/common/version.h
+++ b/src/common/version.h
@@ -1,7 +1,7 @@
 #define MAJOR_VERSION 1
 #define MINOR_VERSION 1
 #define BUILD_VERSION 0
-#define BUILD_REVISION 2261
+#define BUILD_REVISION 2422
 
 #define STRINGIFY(x) #x
 #define MACRO_STRINGIFY(x) STRINGIFY(x)