rename avahi-common/malloc.[ch] to avahi-malloc.

This is to avoid clashing with the system malloc.h, which occurs
in an android build beacause of the order of the generated includes.

This change was generated with the script:

cat > rename_malloc.sh <<EOF
replace() {
  local search="$1"
  local replace="$2"
  FILES=$(grep -l "$search" $(find . -name '*.[ch]'))
  for file in $FILES; do
    echo $file
    sed "s|$search|$replace|" < $file > sed.tmp
    mv sed.tmp $file
  done
}
replace "include \"malloc.h\"" "include \"avahi-malloc.h\""
replace "include \"avahi-common/malloc.h\"" \
  "include \"avahi-common/avahi-malloc.h\""
replace "include <avahi-common/malloc.h>" \
  "include \"avahi-common/avahi-malloc.h\""
EOF

Bug: 22827641
Change-Id: I1eeb4a57993650d8aae62f0686942cfac367b9a8
102 files changed