pcu_l1_if: move direct phy l1if functions to dedicated header file

The function headers for the direct phy related functions (l1if_...) are
currently directly listed in pcu_l1_if.cpp and osmobts_sock.c. Those
functions are basically the API interface definition between the
platform independed PCU code and the platform dependant direct phy code.
Lets put them into a dedicated header file.

Change-Id: Id54b96a4cd498a9860f3f209498132455e2aa6f8
Related: OS#5198
diff --git a/src/osmobts_sock.c b/src/osmobts_sock.c
index 1cbd1a0..282e33f 100644
--- a/src/osmobts_sock.c
+++ b/src/osmobts_sock.c
@@ -30,6 +30,7 @@
 
 
 #include <pcu_l1_if.h>
+#include <pcu_l1_if_phy.h>
 #include <gprs_debug.h>
 #include <gprs_bssgp_pcu.h>
 #include <osmocom/pcu/pcuif_proto.h>
@@ -37,8 +38,6 @@
 #include <tbf.h>
 #include <pdch.h>
 
-int l1if_close_pdch(void *obj);
-
 /*
  * osmo-bts PCU socket functions
  */