mncc: move MNCC_F_ALL from mncc.c to mncc.h

Move it closer to the other MNCC_F_* entries, so that it's more
likely that it gets updated when new flags are added.

Change-Id: If1a12a696b87184c9eee14f475594c317927427b
Related: OS#5282
diff --git a/include/osmocom/msc/mncc.h b/include/osmocom/msc/mncc.h
index 06a5dcc..8a1e4ad 100644
--- a/include/osmocom/msc/mncc.h
+++ b/include/osmocom/msc/mncc.h
@@ -126,6 +126,9 @@
 #define MNCC_F_SIGNAL		0x2000
 #define MNCC_F_GCR		0x4000
 
+/* UPDATEME when adding new MNCC_F_* entries above */
+#define MNCC_F_ALL		0x7fff
+
 struct gsm_mncc {
 	/* context based information */
 	uint32_t	msg_type;
diff --git a/src/libmsc/mncc.c b/src/libmsc/mncc.c
index f446f98..24e79a7 100644
--- a/src/libmsc/mncc.c
+++ b/src/libmsc/mncc.c
@@ -110,8 +110,6 @@
  * MNCC validation code. Move to libosmocore once headers are merged
  ************************************************************************/
 
-#define MNCC_F_ALL 0x7fff
-
 static int check_string_terminated(const char *str, unsigned int size)
 {
 	int i;