elf-{fdpic, dsbt}.h: avoid void pointer's subtraction
commit2c242092372e9f7f62b881e81e8e798475e0cbb3
authorRahul Bedarkar <rahul.bedarkar@imgtec.com>
Sun, 18 Sep 2016 07:45:38 +0000 (18 13:15 +0530)
committerWaldemar Brodkorb <wbx@uclibc-ng.org>
Mon, 19 Sep 2016 16:16:52 +0000 (19 18:16 +0200)
tree33a26d8f06318f55a0d0bd263498c28bd5a58696
parent8ae2b54ee70891ddb720bf00f8913c3716c1f67f
elf-{fdpic, dsbt}.h: avoid void pointer's subtraction

elf-fdpic.h or elf-dsbt.h is included by link.h. When C++ program
includes <link.h>, we get following build failure.

../usr/include/bits/elf-fdpic.h: In function 'void* __reloc_pointer(void*, const elf32_fdpic_loadmap*)':
../usr/include/bits/elf-fdpic.h:95: error: invalid use of 'void'

void pointer addition and subtraction is not allowed in C++ as it has
undetermined size, however in C with language extension it is possible
because sizeof void is treated as one byte.

Instead of performing subtraction on void pointers, typecast it to char*
first.

This build failure is detected by Buildroot autobuilder.
http://autobuild.buildroot.net/results/a10/a10ed48e6eb8411a3d8372f57c05fd11130da0e0/

Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
libc/sysdeps/linux/bfin/bits/elf-fdpic.h
libc/sysdeps/linux/c6x/bits/elf-dsbt.h
libc/sysdeps/linux/frv/bits/elf-fdpic.h