remove STATIC_DCL, STATIC_OVL, STATIC_VAR, STATIC_PTR from core

This commit is contained in:
nhmall
2019-07-14 17:24:58 -04:00
parent e3b5e7f95a
commit 0d34f43830
96 changed files with 2339 additions and 2370 deletions
+6 -6
View File
@@ -13,11 +13,11 @@
#define LEFT 4
#define RIGHT 8
STATIC_DCL void FDECL(roguejoin, (int, int, int, int, int));
STATIC_DCL void FDECL(roguecorr, (int, int, int));
STATIC_DCL void FDECL(miniwalk, (int, int));
static void FDECL(roguejoin, (int, int, int, int, int));
static void FDECL(roguecorr, (int, int, int));
static void FDECL(miniwalk, (int, int));
STATIC_OVL
static
void
roguejoin(x1, y1, x2, y2, horiz)
int x1, y1, x2, y2;
@@ -43,7 +43,7 @@ int horiz;
}
}
STATIC_OVL
static
void
roguecorr(x, y, dir)
int x, y, dir;
@@ -139,7 +139,7 @@ int x, y, dir;
}
/* Modified walkfrom() from mkmaze.c */
STATIC_OVL
static
void
miniwalk(x, y)
int x, y;