summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2009-10-25 00:49:58 +0000
committerDavid Schleef <ds@schleef.org>2009-10-25 00:49:58 +0000
commitb61c2f4106c8bb08219e3e8ceaafa6d0b011bfd1 (patch)
tree5f65dc64f696277a33ff15df927e5018d9624b85 /include
parentd2aa9af42c8e03caed976bafaf8cdba1ac0c6527 (diff)
downloadogg-git-b61c2f4106c8bb08219e3e8ceaafa6d0b011bfd1.tar.gz
Add types for TI c6x compiler
svn path=/trunk/ogg/; revision=16649
Diffstat (limited to 'include')
-rw-r--r--include/ogg/os_types.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/ogg/os_types.h b/include/ogg/os_types.h
index 906cf32..4d4315d 100644
--- a/include/ogg/os_types.h
+++ b/include/ogg/os_types.h
@@ -129,6 +129,15 @@
typedef unsigned int ogg_uint32_t;
typedef long long int ogg_int64_t;
+#elif defined(__TMS320C6X__)
+
+ /* TI C64x compiler */
+ typedef signed short ogg_int16_t;
+ typedef unsigned short ogg_uint16_t;
+ typedef signed int ogg_int32_t;
+ typedef unsigned int ogg_uint32_t;
+ typedef long long int ogg_int64_t;
+
#else
# include <sys/types.h>