diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-05-14 23:54:46 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-05-14 23:54:46 +0000 |
commit | 0a7a3b459cbf908404e3d3d80f15dad6b1c62e79 (patch) | |
tree | 3993e942dc865d96a93741f128ebcd88bc049be1 /nasmlib.c | |
parent | 310b3e165f86d6655bf68bd89ff9309aa63663f2 (diff) | |
download | nasm-0a7a3b459cbf908404e3d3d80f15dad6b1c62e79.tar.gz nasm-0a7a3b459cbf908404e3d3d80f15dad6b1c62e79.tar.bz2 nasm-0a7a3b459cbf908404e3d3d80f15dad6b1c62e79.zip |
Change "const static" -> "static const" to keep gcc happy
Diffstat (limited to 'nasmlib.c')
-rw-r--r-- | nasmlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -640,11 +640,11 @@ void saa_fpwrite (struct SAA *s, FILE *fp) * by the scanner. */ #include "names.c" -const static char *special_names[] = { +static const char *special_names[] = { "byte", "dword", "far", "long", "near", "nosplit", "qword", "short", "to", "tword", "word" }; -const static char *prefix_names[] = { +static const char *prefix_names[] = { "a16", "a32", "lock", "o16", "o32", "rep", "repe", "repne", "repnz", "repz", "times" }; |