OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Extra POSIX/ANSI routines for Win32 when using Visual Studio C++. Please | 5 // Extra POSIX/ANSI routines for Win32 when using Visual Studio C++. Please |
6 // refer to The Open Group Base Specification for specification of the correct | 6 // refer to The Open Group Base Specification for specification of the correct |
7 // semantics for these functions. | 7 // semantics for these functions. |
8 // (http://www.opengroup.org/onlinepubs/000095399/) | 8 // (http://www.opengroup.org/onlinepubs/000095399/) |
9 | 9 |
10 #ifndef V8_WIN32_MATH_H_ | 10 #ifndef V8_BASE_WIN32_MATH_H_ |
11 #define V8_WIN32_MATH_H_ | 11 #define V8_BASE_WIN32_MATH_H_ |
12 | 12 |
13 #ifndef _MSC_VER | 13 #ifndef _MSC_VER |
14 #error Wrong environment, expected MSVC. | 14 #error Wrong environment, expected MSVC. |
15 #endif // _MSC_VER | 15 #endif // _MSC_VER |
16 | 16 |
17 // MSVC 2013+ provides implementations of all standard math functions. | 17 // MSVC 2013+ provides implementations of all standard math functions. |
18 #if (_MSC_VER < 1800) | 18 #if (_MSC_VER < 1800) |
19 enum { | 19 enum { |
20 FP_NAN, | 20 FP_NAN, |
21 FP_INFINITE, | 21 FP_INFINITE, |
(...skipping 10 matching lines...) Expand all Loading... |
32 int isnan(double x); | 32 int isnan(double x); |
33 int isless(double x, double y); | 33 int isless(double x, double y); |
34 int isgreater(double x, double y); | 34 int isgreater(double x, double y); |
35 int fpclassify(double x); | 35 int fpclassify(double x); |
36 int signbit(double x); | 36 int signbit(double x); |
37 | 37 |
38 } // namespace std | 38 } // namespace std |
39 | 39 |
40 #endif // _MSC_VER < 1800 | 40 #endif // _MSC_VER < 1800 |
41 | 41 |
42 #endif // V8_WIN32_MATH_H_ | 42 #endif // V8_BASE_WIN32_MATH_H_ |
OLD | NEW |