summaryrefslogtreecommitdiff
path: root/wsutil/pint.h
diff options
context:
space:
mode:
Diffstat (limited to 'wsutil/pint.h')
-rw-r--r--wsutil/pint.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/wsutil/pint.h b/wsutil/pint.h
index ba3b4a1493..9d4ff81f00 100644
--- a/wsutil/pint.h
+++ b/wsutil/pint.h
@@ -139,15 +139,4 @@
((guint8*)(p))[3] = (guint8)((v) >> 0); \
}
-
-/* Macros to byte-swap 32-bit and 16-bit quantities. */
-#define BSWAP32(x) \
- ((((x)&0xFF000000)>>24) | \
- (((x)&0x00FF0000)>>8) | \
- (((x)&0x0000FF00)<<8) | \
- (((x)&0x000000FF)<<24))
-#define BSWAP16(x) \
- ((((x)&0xFF00)>>8) | \
- (((x)&0x00FF)<<8))
-
#endif /* PINT_H */