1. 12 3月, 2012 3 次提交
  2. 11 3月, 2012 3 次提交
  3. 10 3月, 2012 2 次提交
  4. 05 3月, 2012 2 次提交
  5. 04 3月, 2012 3 次提交
  6. 03 3月, 2012 4 次提交
  7. 21 2月, 2012 1 次提交
  8. 20 2月, 2012 3 次提交
  9. 19 2月, 2012 7 次提交
  10. 14 2月, 2012 2 次提交
  11. 13 2月, 2012 3 次提交
  12. 11 2月, 2012 3 次提交
  13. 06 2月, 2012 1 次提交
  14. 05 2月, 2012 2 次提交
  15. 02 2月, 2012 1 次提交
    • M
      Avoid library header include in crc32.c for Z_SOLO. · f9e4edc9
      Mark Adler 提交于
      crc32.c was #including limits.h in order to find a four-byte integer
      type.  It was doing this even if Z_SOLO were defined, violating the
      intent of Z_SOLO, which is to include no library headers and require
      no library functions.  Now crc32.c obeys the intent of Z_SOLO, but
      with the downside that crc32() will be slower than when not compiled
      with Z_SOLO.  This can be remedied manually by typedefing u4 to a
      known four-byte unsigned integer type, and #defining BYFOUR in
      crc32.c.
      f9e4edc9