patch 9.0.0674: build error with tiny version

Problem:    Build error with tiny version.
Solution:   Use PLINES_NOFILL macro.
diff --git a/src/move.c b/src/move.c
index 474e52d..139ee17 100644
--- a/src/move.c
+++ b/src/move.c
@@ -2258,7 +2258,7 @@
 	min_scrolled = scrolled;
 	if (cln > curwin->w_botline && curwin->w_p_sms && curwin->w_p_wrap)
 	    for (linenr_T lnum = curwin->w_botline + 1; lnum <= cln; ++lnum)
-		min_scrolled += plines_nofill(lnum);
+		min_scrolled += PLINES_NOFILL(lnum);
     }
 
     /*
diff --git a/src/version.c b/src/version.c
index f168982..dc38428 100644
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    674,
+/**/
     673,
 /**/
     672,