Remove warning (static not being first) when building with -W

This commit is contained in:
Neal Norwitz 2004-06-13 20:31:17 +00:00
parent 0a8266a7e3
commit 75a3204095
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@
#endif
#define ENCMAP(encoding) \
const static encode_map *encoding##encmap;
static const encode_map *encoding##encmap;
#define DECMAP(encoding) \
const static decode_map *encoding##decmap;
static const decode_map *encoding##decmap;
#define ENCODER_INIT(encoding) \
static int encoding##_encode_init( \