OSDN Git Service

patch from psm:
authorEric Andersen <andersen@codepoet.org>
Thu, 13 Jul 2006 16:32:02 +0000 (16:32 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 13 Jul 2006 16:32:02 +0000 (16:32 -0000)
commita2a3c80101de57f0276c63d97bcff4f7f40d4ad3
treee4ea1477b8032e3924d6036fe6d16c346fc81c7b
parent550aa275f96effab778e6c77da7b9b59f7fc9d0e
patch from psm:
- malloc/realloc/free are not prepared to be hidable in trunk, you can't
  use libc_hidden_proto(x) for them
- using libc_hidden_proto(x64) LFS unguarded will fail because the header
  does not provide the prototype
- if you are using libc_hidden_proto(collated_compare|prefix_array), you
  also need libc_hidden_def|_weak(x) after the function itself, the result
  being to provide a hidden __GI_collated_compare and a visible
  collated_compare, for this case I do not consider this necessary,
  especially that collated_compare is hidden already (I have chosen to
  prefix them with __ to know that they are intended to be internal only,
  against the practice in glibc, you could go without prefix as well)
libc/misc/glob/glob.c