aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnie Chen <anniechen@google.com>2012-09-05 13:38:44 +0200
committerAnnie Chen <anniechen@google.com>2012-09-05 13:38:44 +0200
commitf5f1955a65bd124e9d734e686fbd1a028bcc0769 (patch)
treec8207a1215b18ff0891b76c71bc6240b2000c12c
parent0c681c7d38482782d404001ddb4251c101752da7 (diff)
downloadlibogg-f5f1955a65bd124e9d734e686fbd1a028bcc0769.tar.gz
Add config_types.h which is generated by configure normally and is needed by make.
Change-Id: I1300cf03614c1a9ef31a4d8dce3f1e9ffe879ef0
-rw-r--r--include/ogg/config_types.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/ogg/config_types.h b/include/ogg/config_types.h
new file mode 100644
index 0000000..3891a1c
--- /dev/null
+++ b/include/ogg/config_types.h
@@ -0,0 +1,10 @@
+#ifndef __CONFIG_TYPES_H__
+#define __CONFIG_TYPES_H__
+
+typedef short ogg_int16_t;
+typedef unsigned short ogg_uint16_t;
+typedef int ogg_int32_t;
+typedef unsigned int ogg_uint32_t;
+typedef long long ogg_int64_t;
+
+#endif