1. 07 9月, 2012 1 次提交
    • R
      use restrict everywhere it's required by c99 and/or posix 2008 · 400c5e5c
      Rich Felker 提交于
      to deal with the fact that the public headers may be used with pre-c99
      compilers, __restrict is used in place of restrict, and defined
      appropriately for any supported compiler. we also avoid the form
      [restrict] since older versions of gcc rejected it due to a bug in the
      original c99 standard, and instead use the form *restrict.
      400c5e5c
  2. 27 8月, 2012 1 次提交
    • R
      dladdr support for dynamic linker (nonstandard extension) · f419bcb9
      Rich Felker 提交于
      based on patches submitted by boris brezillon. this commit also fixes
      the issue whereby the main application and libc don't have the address
      ranges of their mappings stored, which was theoretically a problem for
      RTLD_NEXT support in dlsym; it didn't actually matter because libc
      never calls dlsym, and it seemed to be doing the right thing (by
      chance) for symbols in the main program as well.
      f419bcb9
  3. 27 6月, 2011 2 次提交
  4. 12 2月, 2011 1 次提交