* sprintf.c (_HAVE_SANE_QUAD_): if a certain platform has LONG_LONG in
8 byte, it might be sane quad. [ruby-core:33634] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30156 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d10fab3139
commit
450680a5d7
@ -1,3 +1,8 @@
|
|||||||
|
Fri Dec 10 10:37:17 2010 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* sprintf.c (_HAVE_SANE_QUAD_): if a certain platform has LONG_LONG in
|
||||||
|
8 byte, it might be sane quad. [ruby-core:33634]
|
||||||
|
|
||||||
Fri Dec 10 10:07:59 2010 NARUSE, Yui <naruse@ruby-lang.org>
|
Fri Dec 10 10:07:59 2010 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* lib/net/http.rb: remove version 1.1 features.
|
* lib/net/http.rb: remove version 1.1 features.
|
||||||
|
@ -1121,6 +1121,10 @@ fmt_setup(char *buf, size_t size, int c, int flags, int width, int prec)
|
|||||||
# define quad_t LONG_LONG
|
# define quad_t LONG_LONG
|
||||||
# define u_quad_t unsigned LONG_LONG
|
# define u_quad_t unsigned LONG_LONG
|
||||||
# endif
|
# endif
|
||||||
|
#elif SIZEOF_LONG_LONG == 8
|
||||||
|
# define _HAVE_SANE_QUAD_
|
||||||
|
# define quad_t LONG_LONG
|
||||||
|
# define u_quad_t unsigned LONG_LONG
|
||||||
#endif
|
#endif
|
||||||
#define FLOATING_POINT 1
|
#define FLOATING_POINT 1
|
||||||
#define BSD__dtoa ruby_dtoa
|
#define BSD__dtoa ruby_dtoa
|
||||||
|
Loading…
x
Reference in New Issue
Block a user