1. 25 7月, 2013 3 次提交
  2. 27 6月, 2013 1 次提交
  3. 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
  4. 21 6月, 2012 1 次提交
  5. 20 6月, 2012 1 次提交
    • R
      fix localeconv values and implementation · 85a3ba3a
      Rich Felker 提交于
      dynamic-allocation of the structure is not valid; it can crash an
      application if malloc fails. since localeconv is not specified to have
      failure conditions, the object needs to have static storage duration.
      
      need to review whether all the values are right or not still..
      85a3ba3a
  6. 19 6月, 2012 3 次提交
  7. 22 4月, 2012 1 次提交
  8. 25 3月, 2012 1 次提交
  9. 21 3月, 2012 1 次提交
  10. 02 3月, 2012 1 次提交
  11. 07 2月, 2012 3 次提交
  12. 13 7月, 2011 1 次提交
  13. 12 7月, 2011 2 次提交
  14. 04 7月, 2011 1 次提交
  15. 30 5月, 2011 1 次提交
  16. 08 4月, 2011 1 次提交
  17. 04 4月, 2011 1 次提交
  18. 26 3月, 2011 1 次提交
    • R
      fix all implicit conversion between signed/unsigned pointers · 9ae8d5fc
      Rich Felker 提交于
      sadly the C language does not specify any such implicit conversion, so
      this is not a matter of just fixing warnings (as gcc treats it) but
      actual errors. i would like to revisit a number of these changes and
      possibly revise the types used to reduce the number of casts required.
      9ae8d5fc
  19. 14 2月, 2011 1 次提交
  20. 12 2月, 2011 1 次提交