aboutsummaryrefslogtreecommitdiffstats
path: root/host-defs.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:35 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:35 -0800
commitf721e3ac031f892af46f255a47d7f54a91317b30 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /host-defs.h
parentbae1bc39312d5019bd9a5b8d840a529213a69a17 (diff)
downloadexternal_qemu-f721e3ac031f892af46f255a47d7f54a91317b30.zip
external_qemu-f721e3ac031f892af46f255a47d7f54a91317b30.tar.gz
external_qemu-f721e3ac031f892af46f255a47d7f54a91317b30.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'host-defs.h')
-rw-r--r--host-defs.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/host-defs.h b/host-defs.h
deleted file mode 100644
index 686416a..0000000
--- a/host-defs.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _HOST_DEFS_H
-#define _HOST_DEFS_H
-
-/* all host-specific definitions should go here */
-
-#include "config-host.h"
-#include <stdint.h>
-
-#if HOST_LONG_BITS == 32
-typedef int32_t host_long;
-typedef uint32_t host_ulong;
-#elif HOST_LONG_BITS == 64
-typedef int64_t host_long;
-typedef uint64_t host_ulong;
-#endif
-
-#endif /* _HOST_DEFS_H */
-