ipaccess: make some functions static that shouldn't be exported
diff --git a/src/input/ipa.c b/src/input/ipa.c
index ce1e6f2..b9bde68 100644
--- a/src/input/ipa.c
+++ b/src/input/ipa.c
@@ -167,7 +167,7 @@
 	return 0;
 }
 
-int ipa_client_fd_cb(struct osmo_fd *ofd, unsigned int what)
+static int ipa_client_fd_cb(struct osmo_fd *ofd, unsigned int what)
 {
 	struct ipa_client_link *link = ofd->data;
 	int error, ret;
@@ -301,7 +301,7 @@
 	link->ofd->when |= BSC_FD_WRITE;
 }
 
-int ipa_server_fd_cb(struct osmo_fd *ofd, unsigned int what)
+static int ipa_server_fd_cb(struct osmo_fd *ofd, unsigned int what)
 {
 	int ret;
 	struct sockaddr_in sa;
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 5f35ab6..602aded 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -531,7 +531,7 @@
 	return __handle_ts1_write(bfd, line);
 }
 
-int ipaccess_bts_write_cb(struct ipa_client_link *link)
+static int ipaccess_bts_write_cb(struct ipa_client_link *link)
 {
 	struct e1inp_line *line = link->line;