comparison src/common.h @ 130:e35fd42bac05

more cleanup of include files
author Carl Byington <carl@five-ten-sg.com>
date Thu, 05 Feb 2009 13:38:46 -0800
parents fc11b1d1ad34
children 2ec889a79e51
comparison
equal deleted inserted replaced
129:fc11b1d1ad34 130:e35fd42bac05
4 4
5 5
6 #include <stdlib.h> 6 #include <stdlib.h>
7 #include <stdio.h> 7 #include <stdio.h>
8 #include <stdarg.h> 8 #include <stdarg.h>
9
10
11 // switch to maximal packing for all structures in the libpst interface
12 // this is reverted in the vbuf.h include
13 #ifdef _MSC_VER
14 #pragma pack(push, 1)
15 #endif
16 #if defined(__GNUC__) || defined (__SUNPRO_C) || defined(__SUNPRO_CC)
17 #pragma pack(1)
18 #endif
19 9
20 10
21 #ifndef _MSC_VER 11 #ifndef _MSC_VER
22 #include <stdint.h> 12 #include <stdint.h>
23 #include <inttypes.h> 13 #include <inttypes.h>