Replace // double slash comments with /* */. (#1461)
JerryScript-DCO-1.0-Signed-off-by: Robert Sipka rsipka.uszeged@partner.samsung.com
This commit is contained in:
committed by
Tilmann Scheller
parent
4d2c22a118
commit
fb3e8cf8b8
@@ -22,8 +22,7 @@ extern "C"
|
||||
{
|
||||
#endif /* __cplusplus */
|
||||
|
||||
// General Constants
|
||||
|
||||
/* General Constants. */
|
||||
#define INFINITY (1.0/0.0)
|
||||
#define NAN (0.0/0.0)
|
||||
#define HUGE_VAL INFINITY
|
||||
@@ -32,8 +31,7 @@ extern "C"
|
||||
#define isinf(x) (((x) == INFINITY) || ((x) == -INFINITY))
|
||||
#define isfinite(x) (!(isinf(x)) && (x != NAN))
|
||||
|
||||
// Exponential and Logarithmic constants
|
||||
|
||||
/* Exponential and Logarithmic constants. */
|
||||
#define M_E 2.7182818284590452353602874713526625
|
||||
#define M_SQRT2 1.4142135623730950488016887242096981
|
||||
#define M_SQRT1_2 0.7071067811865475244008443621048490
|
||||
@@ -42,8 +40,7 @@ extern "C"
|
||||
#define M_LN2 0.6931471805599453094172321214581765
|
||||
#define M_LN10 2.3025850929940456840179914546843642
|
||||
|
||||
// Trigonometric Constants
|
||||
|
||||
/* Trigonometric Constants. */
|
||||
#define M_PI 3.1415926535897932384626433832795029
|
||||
#define M_PI_2 1.5707963267948966192313216916397514
|
||||
#define M_PI_4 0.7853981633974483096156608458198757
|
||||
@@ -51,7 +48,7 @@ extern "C"
|
||||
#define M_2_PI 0.6366197723675813430755350534900574
|
||||
#define M_2_SQRTPI 1.1283791670955125738961589031215452
|
||||
|
||||
// Trigonometric functions
|
||||
/* Trigonometric functions. */
|
||||
double cos (double);
|
||||
double sin (double);
|
||||
double tan (double);
|
||||
@@ -60,19 +57,19 @@ double asin (double);
|
||||
double atan (double);
|
||||
double atan2 (double, double);
|
||||
|
||||
// Exponential and logarithmic functions
|
||||
/* Exponential and logarithmic functions. */
|
||||
double exp (double);
|
||||
double log (double);
|
||||
|
||||
// Power functions
|
||||
/* Power functions. */
|
||||
double pow (double, double);
|
||||
double sqrt (double);
|
||||
|
||||
// Rounding and remainder functions
|
||||
/* Rounding and remainder functions. */
|
||||
double ceil (double);
|
||||
double floor (double);
|
||||
|
||||
// Other functions
|
||||
/* Other functions. */
|
||||
double fabs (double);
|
||||
double fmod (double, double);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user