]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
New file.
authorJulian Seward <jseward@acm.org>
Sun, 20 Jun 2004 11:25:49 +0000 (11:25 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 20 Jun 2004 11:25:49 +0000 (11:25 +0000)
-wThis line, and those below, will be ignored--

A    backend
A    backend/basictypes.h

git-svn-id: svn://svn.valgrind.org/vex/trunk@13

VEX/backend/basictypes.h [new file with mode: 0644]

diff --git a/VEX/backend/basictypes.h b/VEX/backend/basictypes.h
new file mode 100644 (file)
index 0000000..4a6af04
--- /dev/null
@@ -0,0 +1,21 @@
+
+#ifndef __BASICTYPES_H
+#define __BASICTYPES_H
+
+typedef  unsigned char   UChar;
+typedef           char   Char;        /* platform-dependent signfulness */
+
+typedef  unsigned short  UShort;
+typedef    signed short  Short;
+
+typedef  unsigned int    UInt;
+typedef    signed int    Int;
+
+typedef  unsigned long long int   ULong;
+typedef    signed long long int   Long;
+
+typedef  unsigned char  Bool;
+#define  True   ((Bool)1)
+#define  False  ((Bool)0)
+
+#endif /* ndef __BASICTYPES_H */