libsanitizer: arm/ucontext.h: add glibc-style REG_R0..REG_R15 aliases
uClibc-ng's <sys/ucontext.h> for ARM exposes the gregset_t register
indices as R0..R15 (older glibc convention), while modern glibc and
projects like libsanitizer reference them as REG_R0..REG_R15. This
causes libsanitizer to fail to build with errors like
"'REG_R0' was not declared in this scope".
Add the glibc-style aliases as preprocessor macros pointing at the
existing enum values. Compatible with existing R0..R15 users.
Signed-off-by: Ramin Moussavi <ramin.moussavi@yacoub.de>