summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-14 17:10:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-14 17:10:33 -0300
commitaa5b15f2712d3b08a7716a833c6fd8032f203b8d (patch)
tree94a6bb57d201a456b54aea5c3c71c94de5c3370d
parent653416d5c06d54f8e75603f32043d328ba902b9c (diff)
downloadlua-github-aa5b15f2712d3b08a7716a833c6fd8032f203b8d.tar.gz
-rw-r--r--lmathlib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lmathlib.c b/lmathlib.c
index 0e9860ee..50a7a89f 100644
--- a/lmathlib.c
+++ b/lmathlib.c
@@ -1,5 +1,5 @@
/*
-** $Id: lmathlib.c,v 1.49 2002/08/07 20:54:38 roberto Exp roberto $
+** $Id: lmathlib.c,v 1.50 2002/08/14 20:07:43 roberto Exp roberto $
** Standard mathematical library
** See Copyright Notice in lua.h
*/
@@ -22,9 +22,9 @@
/*
** If you want Lua to operate in degrees (instead of radians),
-** define DEGREES
+** define USE_DEGREES
*/
-#ifdef DEGREES
+#ifdef USE_DEGREES
#define FROMRAD(a) ((a)/RADIANS_PER_DEGREE)
#define TORAD(a) ((a)*RADIANS_PER_DEGREE)
#else