aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-28 16:17:01 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-28 16:17:01 +0000
commitc81523f62128b4b028e45586ec66f31792e4f923 (patch)
tree8ca204166735b53a3e64da8c05cada1dd018bc99
parent6c673c55b78cae1137324e192be378f20d03f951 (diff)
downloadlibextractor-c81523f62128b4b028e45586ec66f31792e4f923.tar.gz
libextractor-c81523f62128b4b028e45586ec66f31792e4f923.zip
LRN: avoid redefining byte if already defined
-rw-r--r--src/common/pack.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/pack.c b/src/common/pack.c
index 94fa3d2..0c8b226 100644
--- a/src/common/pack.c
+++ b/src/common/pack.c
@@ -27,7 +27,9 @@ MODIFICATIONS.
27#include "platform.h" 27#include "platform.h"
28#include "pack.h" 28#include "pack.h"
29 29
30#if !(defined(_WIN32) && defined(cbNDRContext))
30typedef unsigned char byte; 31typedef unsigned char byte;
32#endif
31typedef unsigned short half; 33typedef unsigned short half;
32typedef unsigned int word; 34typedef unsigned int word;
33typedef signed char sbyte; 35typedef signed char sbyte;