Planeshift

packing.h

Go to the documentation of this file.
00001 // Hacks for different compiler to pack structs
00002 #ifndef __PACKING_H__
00003 #define __PACKING_H__
00004 
00009 #ifdef __GNUC__
00010 #   define PS_PACKED   __attribute__((packed))
00011 #else
00012 #   define PS_PACKED
00013 #endif
00014 
00017 #endif
00018