core/utils: Add a symbol alias for a previous typo for compatibility

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
diff --git a/src/utils.c b/src/utils.c
index 50adc31..d32c5c0 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -178,6 +178,10 @@
 	return _osmo_hexdump(buf, len, "");
 }
 
+	/* Compat with previous typo to preserve abi */
+char *osmo_osmo_hexdump_nospc(const unsigned char *buf, int len)
+	__attribute__((alias("osmo_hexdump_nospc")));
+
 #include "../config.h"
 #ifdef HAVE_CTYPE_H
 #include <ctype.h>