summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/glheader.h
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-09-20 07:32:30 -0700
committerKeith Whitwell <keith@tungstengraphics.com>2008-09-21 09:45:00 -0700
commit5a46e176715b0eae7b8a715e8aec42f5a27214fc (patch)
tree6f8c89c2744f6092a371bbdcdf0a1b9f68124571 /src/mesa/main/glheader.h
parent3474e9de924d92a941b4ea33ecc694f5fad2651f (diff)
downloadexternal_mesa3d-5a46e176715b0eae7b8a715e8aec42f5a27214fc.zip
external_mesa3d-5a46e176715b0eae7b8a715e8aec42f5a27214fc.tar.gz
external_mesa3d-5a46e176715b0eae7b8a715e8aec42f5a27214fc.tar.bz2
mesa: standardize on C99's uint*_t instead of u_int*_t
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r--src/mesa/main/glheader.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h
index 6f3b208..602d6f5 100644
--- a/src/mesa/main/glheader.h
+++ b/src/mesa/main/glheader.h
@@ -82,15 +82,6 @@
# include <inttypes.h>
#endif
-/* For platforms that have the C99 standard uint*_t,
- but not the commonly used u_int*_t */
-#if defined(__sun)
-# define u_int8_t uint8_t
-# define u_int16_t uint16_t
-# define u_int32_t uint32_t
-# define u_int64_t uint64_t
-# define u_intptr_t uintptr_t
-#endif
/* Sun compilers define __i386 instead of the gcc-style __i386__ */
#ifdef __SUNPRO_C