glsl2: Use stdint.h instead of inttypes.h
authorIan Romanick <ian.d.romanick@intel.com>
Fri, 13 Aug 2010 23:22:21 +0000 (16:22 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Fri, 13 Aug 2010 23:22:21 +0000 (16:22 -0700)
src/glsl/glcpp/glcpp-parse.c
src/glsl/glcpp/glcpp-parse.y
src/glsl/ir_function_inlining.cpp
src/glsl/ir_validate.cpp

index a4d46042fffe8574e0c9d063b3c74cd2837988de..b081d22e752e382e5a13c5e582a9d634acef282f 100644 (file)
@@ -97,7 +97,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
-#include <inttypes.h>
+#include <stdint.h>
 
 #include "glcpp.h"
 #include "main/mtypes.h"
index b05a925a098d0f2782f88cf46c481bbe1f23f2e9..0d70afd779c8a6a8977d225bbd763a217a70adda 100644 (file)
@@ -26,7 +26,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
-#include <inttypes.h>
+#include <stdint.h>
 
 #include "glcpp.h"
 #include "main/mtypes.h"
index 874602c84f291f095828c615c0d45baf5dc0dfb9..56d29e3fd166eb43d856e12aa5c871500e6f7ab1 100644 (file)
@@ -27,7 +27,7 @@
  * Replaces calls to functions with the body of the function.
  */
 
-#include <inttypes.h>
+#include <stdint.h>
 #include "ir.h"
 #include "ir_visitor.h"
 #include "ir_function_inlining.h"
index 6e08fa4025a1609704b841a2e064b04ac03bd4d4..905b3c76721e85975ceac3130ca78fad7984ce17 100644 (file)
@@ -33,7 +33,7 @@
  * a dereference chain.
  */
 
-#include <inttypes.h>
+#include <stdint.h>
 #include "ir.h"
 #include "ir_hierarchical_visitor.h"
 #include "program/hash_table.h"