<Someone> complained that his compiler was giving these
two warnings:
weapon.c:835: warning: `static' is not at beginning of declaration
version.c:132: warning: `static' is not at beginning of declaration
store_version(fd)
int fd;
{
- const static struct version_info version_data = {
+ static const struct version_info version_data = {
VERSION_NUMBER, VERSION_FEATURES,
VERSION_SANITY1, VERSION_SANITY2, VERSION_SANITY3
};
P_NAME(skill));
}
-const static struct skill_range {
+static const struct skill_range {
short first, last;
const char *name;
} skill_ranges[] = {