assess worm.c static functions for nonnull

This commit is contained in:
nhmall
2023-12-22 13:18:04 -05:00
parent 741d2929b4
commit 92250aa15d

View File

@@ -14,12 +14,12 @@ struct wseg {
coordxy wx, wy; /* the segment's position */
};
static void toss_wsegs(struct wseg *, boolean);
static void toss_wsegs(struct wseg *, boolean) NO_NNARGS;
static void shrink_worm(int);
#if 0
static void random_dir(int, int, int *, int *);
#endif
static struct wseg *create_worm_tail(int);
static struct wseg *create_worm_tail(int); /* may return NULL */
/* Description of long worm implementation.
*