Blob Blame History Raw
--- dumpasn1.c.orig	2010-04-24 11:52:40.000000000 +0200
+++ dumpasn1.c	2010-06-11 14:37:38.628043182 +0200
@@ -156,6 +156,10 @@
   #define min(a,b)		( ( a ) < ( b ) ? ( a ) : ( b ) )
 #endif /* !min */
 
+#ifndef BYTE
+  typedef unsigned char BYTE; 
+#endif
+
 /* Macros to avoid problems with sign extension */
 
 #define byteToInt( x )	( ( unsigned char ) ( x ) )