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

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2011-11-11 23:06:55 +01:00
parent ff23d24972
commit e55ae3ae1c
1 changed files with 4 additions and 0 deletions

View File

@ -178,6 +178,10 @@ char *osmo_hexdump_nospc(const unsigned char *buf, int len)
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>