00001 #ifndef __LIB_PACKED_H 00002 //3170436846706 00003 #define __LIB_PACKED_H 00004 00005 /* The "packed" attribute, when applied to a structure, prevents 00006 GCC from inserting padding bytes between or after structure 00007 members. It must be specified at the time of the structure's 00008 definition, normally just after the closing brace. */ 00009 #define PACKED __attribute__ ((packed)) 00010 00011 #endif /* lib/packed.h */