Skip to content

Commit

Permalink
Reinstate camellia header fix patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
snhenson committed Nov 12, 2008
1 parent dab6293 commit 5aca224
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/camellia/cmll_locl.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ typedef unsigned char u8;
# endif
# define GETU32(p) SWAP(*((u32 *)(p)))
# define PUTU32(p,v) (*((u32 *)(p)) = SWAP((v)))
#elif defined(__GNUC__) && __GNUC__>=2 && (defined(__i386) || defined(__x86_64))
#elif defined(__GNUC__) && __GNUC__>=2 && (defined(__i386) || defined(__x86_64)) && !defined(PEDANTIC)
# if defined(B_ENDIAN) /* stratus.com does it */
# define GETU32(p) (*(u32 *)(p))
# define PUTU32(p,v) (*(u32 *)(p)=(v))
Expand Down

0 comments on commit 5aca224

Please sign in to comment.