gooderp18绿色标准版
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
648B

  1. /* src/include/port/cygwin.h */
  2. #include <cygwin/version.h>
  3. /*
  4. * Check for b20.1 and disable AF_UNIX family socket support.
  5. */
  6. #if CYGWIN_VERSION_DLL_MAJOR < 1001
  7. #undef HAVE_UNIX_SOCKETS
  8. #endif
  9. #ifdef BUILDING_DLL
  10. #define PGDLLIMPORT __declspec (dllexport)
  11. #else
  12. #define PGDLLIMPORT __declspec (dllimport)
  13. #endif
  14. #define PGDLLEXPORT
  15. /*
  16. * Cygwin has a strtof() which is literally just (float)strtod(), which means
  17. * we get misrounding _and_ silent over/underflow. Using our wrapper doesn't
  18. * fix the misrounding but does fix the error checks, which cuts down on the
  19. * number of test variant files needed.
  20. */
  21. #define HAVE_BUGGY_STRTOF 1
上海开阖软件有限公司 沪ICP备12045867号-1