Planeshift
packing.h
Go to the documentation of this file.
1 // Hacks for different compiler to pack structs
2 #ifndef __PACKING_H__
3 #define __PACKING_H__
4 
9 #ifdef __GNUC__
10 # define PS_PACKED __attribute__((packed))
11 #else
12 # define PS_PACKED
13 #endif
14 
17 #endif
18