*** empty log message ***

This commit is contained in:
hyung-hwan 2007-02-18 15:09:19 +00:00
parent 5ba7dc3a5a
commit 2e17994a80

View File

@ -1,5 +1,5 @@
/*
* $Id: macros.h,v 1.46 2007-02-07 14:04:34 bacon Exp $
* $Id: macros.h,v 1.47 2007-02-18 15:09:19 bacon Exp $
*
* {License}
*/
@ -88,4 +88,12 @@
#define ASE_T(txt) ASE_WT(txt)
#endif
#if defined(__GNUC__)
#define ASE_BEGIN_PACKED_STRUCT(x) struct x {
#define ASE_END_PACKED_STRUCT() } __attribute__((packed))
#else
#define ASE_BEGIN_PAcKED_STRUCT(x) struct x {
#define AES_END_PACKED_STRUCT() }
#endif
#endif