]> git.proxmox.com Git - mirror_qemu.git/blobdiff - dyngen-exec.h
do not depend on thunk.h - more log items
[mirror_qemu.git] / dyngen-exec.h
index 5e9bab6f9adb369f257f5ebaebfcd9fe960e6c92..004ca71cdf0e16896b64b2a12b63db98ed05dcd1 100644 (file)
@@ -45,16 +45,6 @@ typedef signed long long int64_t;
 #define UINT32_MAX             (4294967295U)
 #define UINT64_MAX             ((uint64_t)(18446744073709551615))
 
-#define bswap32(x) \
-({ \
-       uint32_t __x = (x); \
-       ((uint32_t)( \
-               (((uint32_t)(__x) & (uint32_t)0x000000ffUL) << 24) | \
-               (((uint32_t)(__x) & (uint32_t)0x0000ff00UL) <<  8) | \
-               (((uint32_t)(__x) & (uint32_t)0x00ff0000UL) >>  8) | \
-               (((uint32_t)(__x) & (uint32_t)0xff000000UL) >> 24) )); \
-})
-
 typedef struct FILE FILE;
 extern int fprintf(FILE *, const char *, ...);
 extern int printf(const char *, ...);