summaryrefslogtreecommitdiffstats
path: root/cpukit/itron
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-09 22:25:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-09 22:25:55 +0000
commite18ba7f0f6f3c9ab3e6a4285de34f43dc0e55e99 (patch)
tree2d1e5e72fa5ee227ec32b9867cab0a397a51c339 /cpukit/itron
parentThis patch adds the basic framework for the ITRON 3.0 API implementation (diff)
downloadrtems-e18ba7f0f6f3c9ab3e6a4285de34f43dc0e55e99.tar.bz2
Commented out single letter type names since they conflict with
numerous other uses of the same variable.
Diffstat (limited to 'cpukit/itron')
-rw-r--r--cpukit/itron/include/itronsys/types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/cpukit/itron/include/itronsys/types.h b/cpukit/itron/include/itronsys/types.h
index fd045df6aa..c9dc8db40e 100644
--- a/cpukit/itron/include/itronsys/types.h
+++ b/cpukit/itron/include/itronsys/types.h
@@ -14,13 +14,19 @@ extern "C" {
#endif
/* XXX some of these may need to be moved */
+/*
+ * XXX: These names are too short and conflict with numerous
+ * off the shell programs including paranoia.
+ */
+#if 0
typedef signed8 B; /* signed 8-bit integer */
typedef signed16 H; /* signed 16-bit integer */
typedef signed32 W; /* signed 32-bit integer */
typedef unsigned8 UB; /* unsigned 8-bit integer */
typedef unsigned16 UH; /* unsigned 16-bit integer */
typedef unsigned32 UW; /* unsigned 32-bit integer */
+#endif
typedef unsigned32 VW; /* unpredictable data type (32-bit size) */
typedef unsigned16 VH; /* unpredictable data type (16-bit size) */