gooderp18绿色标准版
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

27 rindas
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