diff options
author | Max Horn | 2006-07-21 21:25:17 +0000 |
---|---|---|
committer | Max Horn | 2006-07-21 21:25:17 +0000 |
commit | f59cf1fcdc88959d87072205a41f542c12e73e37 (patch) | |
tree | 7e6488f459a5af7020de29f2ec78a13fcf6f9517 /common | |
parent | 348e34c685b2c1c00e1d0a18f145ca4a075069ee (diff) | |
download | scummvm-rg350-f59cf1fcdc88959d87072205a41f542c12e73e37.tar.gz scummvm-rg350-f59cf1fcdc88959d87072205a41f542c12e73e37.tar.bz2 scummvm-rg350-f59cf1fcdc88959d87072205a41f542c12e73e37.zip |
Removing GCC_PACK, we fully rely on START_PACK_STRUCTS / END_PACK_STRUCTS now (hiya eriktorbjorn, this one is for you *ggg*)
svn-id: r23547
Diffstat (limited to 'common')
-rw-r--r-- | common/scummsys.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index a76ca494e6..cb26901ddf 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -359,11 +359,9 @@ // GCC specific stuff // #if defined(__GNUC__) - #define GCC_PACK __attribute__((packed)) #define NORETURN __attribute__((__noreturn__)) #define GCC_PRINTF(x,y) __attribute__((format(printf, x, y))) #else - #define GCC_PACK #define GCC_PRINTF(x,y) #endif |