From d29d9b73e140ae9d6ae043ba096e35bf44d6d40f Mon Sep 17 00:00:00 2001 From: Todd A Ouska Date: Wed, 7 Sep 2011 16:03:17 -0700 Subject: [PATCH] conditional byte typedef --- cyassl/ctaocrypt/types.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cyassl/ctaocrypt/types.h b/cyassl/ctaocrypt/types.h index 457909633..4ca9d558c 100644 --- a/cyassl/ctaocrypt/types.h +++ b/cyassl/ctaocrypt/types.h @@ -39,7 +39,9 @@ #endif #ifndef CYASSL_TYPES - typedef unsigned char byte; + #ifndef byte + typedef unsigned char byte; + #endif typedef unsigned short word16; typedef unsigned int word32; #endif