1 // The following is adapted from fdlibm (http://www.netlib.org/fdlibm).
3 // ====================================================
4 // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 // Developed at SunSoft, a Sun Microsystems, Inc. business.
7 // Permission to use, copy, modify, and distribute this
8 // software is freely granted, provided that this notice
10 // ====================================================
12 // The original source code covered by the above license above has been
13 // modified significantly by Google Inc.
14 // Copyright 2014 the V8 project authors. All rights reserved.
22 int rempio2(double x, double* y);
24 // Constants to be exposed to builtins via Float64Array.
25 struct MathConstants {
26 static const double constants[56];
29 } // namespace v8::internal
31 #endif // V8_FDLIBM_H_