host-defs.h: Remove obsolete file
Change-Id: I8173c10e2b3e9ea2ba6b31016c5f9ac0e1bd1810
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 */
-