NO_NONNULLS -> NO_NNARGS

I find:
    extern char *an(const char *) NONNULL NO_NNARGS;

slightly better than this:
    extern char *an(const char *) NONNULL NO_NONNULLS;
This commit is contained in:
nhmall
2023-12-20 22:26:16 -05:00
parent ab74019dcb
commit c3ce08b794
7 changed files with 128 additions and 128 deletions

View File

@@ -32,7 +32,7 @@ static boolean isspecmon(struct monst *);
static boolean validspecmon(struct monst *, int);
static int wiz_force_cham_form(struct monst *);
static struct permonst *accept_newcham_form(struct monst *, int);
static void kill_eggs(struct obj *) NO_NONNULLS;
static void kill_eggs(struct obj *) NO_NNARGS;
static void pacify_guard(struct monst *);
extern const struct shclass shtypes[]; /* defined in shknam.c */