abis_nm: Forward declare the used enums

This file is using enums in that might or might not be
known to the compiler. Forward declare them.
diff --git a/include/osmocom/gsm/abis_nm.h b/include/osmocom/gsm/abis_nm.h
index dcc8d4b..8534557 100644
--- a/include/osmocom/gsm/abis_nm.h
+++ b/include/osmocom/gsm/abis_nm.h
@@ -4,6 +4,9 @@
 #include <osmocom/gsm/tlv.h>
 #include <osmocom/gsm/protocol/gsm_12_21.h>
 
+enum abis_nm_msgtype;
+enum gsm_phys_chan_config;
+
 const enum abis_nm_msgtype abis_nm_reports[4];
 const enum abis_nm_msgtype abis_nm_no_ack_nack[3];
 const enum abis_nm_msgtype abis_nm_sw_load_msgs[9];