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

@@ -15,7 +15,7 @@
static const char *intermed(void);
/* sometimes find_qarti(gi.invent), and gi.invent can be null */
static struct obj *find_qarti(struct obj *) NO_NONNULLS;
static struct obj *find_qarti(struct obj *) NO_NNARGS;
static const char *neminame(void);
static const char *guardname(void);
static const char *homebase(void);