NOSTATICFN for src/*

This commit is contained in:
nhkeni
2024-03-14 17:41:51 -04:00
parent d523041b60
commit 9c0ed8ae63
111 changed files with 3871 additions and 3879 deletions

View File

@@ -4,8 +4,8 @@
#include "hack.h"
static int explosionmask(struct monst *, uchar, char) NONNULLARG1;
static void engulfer_explosion_msg(uchar, char);
staticfn int explosionmask(struct monst *, uchar, char) NONNULLARG1;
staticfn void engulfer_explosion_msg(uchar, char);
/* Note: Arrays are column first, while the screen is row first */
static const int explosion[3][3] = {
@@ -22,7 +22,7 @@ enum explode_action {
};
/* check if shield effects are needed for location affected by explosion */
static int
staticfn int
explosionmask(
struct monst *m, /* target monster (might be youmonst) */
uchar adtyp, /* damage type */
@@ -114,7 +114,7 @@ explosionmask(
return res;
}
static void
staticfn void
engulfer_explosion_msg(uchar adtyp, char olet)
{
const char *adj = (char *) 0;