For libm, use a macro for aliasing symbols.

Change-Id: Ibd42ebc387c2bf3eba9aa96091770915b4b34184
This commit is contained in:
Christopher Ferris
2015-03-13 17:43:52 -07:00
parent 81c31bdd43
commit 995b813e91
25 changed files with 29 additions and 54 deletions

View File

@@ -57,4 +57,8 @@
ENTRY(f); \
.hidden f \
#define ALIAS_SYMBOL(alias, original) \
.globl alias; \
.equ alias, original
#endif /* _PRIVATE_BIONIC_ASM_H_ */