~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to system/include/bsd/float.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-09-20 22:44:35 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20130920224435-apuwj4fsl3fqv1a6
Tags: 1.5.6~20130920~6010666-1
* New snapshot release
* Update the list of supported architectures to the same as libv8
  (Closes: #723129)
* emlibtool has been removed from upstream.
* Fix warning syntax-error-in-dep5-copyright
* Refresh of the patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
#define DBL_MAX         1.7976931348623157E+308
74
74
#define DBL_MAX_10_EXP  308
75
75
 
76
 
#define LDBL_MANT_DIG   64
77
 
#define LDBL_EPSILON    1.08420217248550443401e-19L
78
 
#define LDBL_DIG        18
79
 
#define LDBL_MIN_EXP    (-16381)
80
 
#define LDBL_MIN        3.36210314311209350626e-4932L
81
 
#define LDBL_MIN_10_EXP (-4931)
82
 
#define LDBL_MAX_EXP    16384
83
 
#define LDBL_MAX        1.18973149535723176502e+4932L
84
 
#define LDBL_MAX_10_EXP 4932
 
76
#define LDBL_MANT_DIG   DBL_MANT_DIG
 
77
#define LDBL_EPSILON    DBL_EPSILON
 
78
#define LDBL_DIG        DBL_DIG
 
79
#define LDBL_MIN_EXP    DBL_MIN_EXP
 
80
#define LDBL_MIN        DBL_MIN
 
81
#define LDBL_MIN_10_EXP DBL_MIN_10_EXP
 
82
#define LDBL_MAX_EXP    DBL_MAX_EXP
 
83
#define LDBL_MAX        DBL_MAX
 
84
#define LDBL_MAX_10_EXP DBL_MAX_10_EXP
85
85
 
86
86
#if __ISO_C_VISIBLE >= 1999
87
87
#define DECIMAL_DIG     21