aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/ttf2pt1/byteorder.h
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
commitb16b9e4656e7199c2aec74a4c8ebc7a875d3ba73 (patch)
tree4361edef0d42d5bf5ac984ef72b4fac35426eae7 /nx-X11/extras/ttf2pt1/byteorder.h
parent0d5a83e986f39982c0924652a3662e60b1f23162 (diff)
downloadnx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.gz
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.bz2
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.zip
massive reduction of unneeded files
Diffstat (limited to 'nx-X11/extras/ttf2pt1/byteorder.h')
-rw-r--r--nx-X11/extras/ttf2pt1/byteorder.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/nx-X11/extras/ttf2pt1/byteorder.h b/nx-X11/extras/ttf2pt1/byteorder.h
deleted file mode 100644
index c139817e5..000000000
--- a/nx-X11/extras/ttf2pt1/byteorder.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * see COPYRIGHT
- */
-
-/* This defines the macroes ntohs and ntohl, which convert short and long
- ints from network order (used on 68000 chips, and in TrueType font
- files) to whatever order your computer uses. #define _BIG_ENDIAN or not
- to control which set of definitions apply. If you don't know, try both. If
- you have a peculiar machine you're on your own.
-*/
-
-#if defined(_BIG_ENDIAN)
-#define ntohl(x) (x)
-#define ntohs(x) (x)
-#else
-#define ntohs(x) \
- ((USHORT)((((USHORT)(x) & 0x00ff) << 8) | \
- (((USHORT)(x) & 0xff00) >> 8)))
-#define ntohl(x) \
- ((ULONG)((((ULONG)(x) & 0x000000ffU) << 24) | \
- (((ULONG)(x) & 0x0000ff00U) << 8) | \
- (((ULONG)(x) & 0x00ff0000U) >> 8) | \
- (((ULONG)(x) & 0xff000000U) >> 24)))
-#endif