summaryrefslogtreecommitdiff
path: root/src/emathfun.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emathfun.h')
-rw-r--r--src/emathfun.h20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/emathfun.h b/src/emathfun.h
index d282ce3..79f4104 100644
--- a/src/emathfun.h
+++ b/src/emathfun.h
@@ -1,7 +1,7 @@
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
- /* CLIPS Version 6.20 01/31/02 */
+ /* CLIPS Version 6.30 12/27/07 */
/* */
/* EXTENDED MATH FUNCTIONS HEADER FILE */
/*******************************************************/
@@ -21,6 +21,18 @@
/* */
/* Revision History: */
/* */
+/* 6.30: Removed conditional code for unsupported */
+/* compilers/operating systems (IBM_MCW and */
+/* MAC_MCW). */
+/* */
+/* Support for long long integers. */
+/* */
+/* Renamed EX_MATH compiler flag to */
+/* EXTENDED_MATH_FUNCTIONS. */
+/* */
+/* Added const qualifiers to remove C++ */
+/* deprecation warnings. */
+/* */
/*************************************************************/
#ifndef _H_emathfun
@@ -38,7 +50,7 @@
#endif
LOCALE void ExtendedMathFunctionDefinitions(void *theEnv);
-#if EX_MATH
+#if EXTENDED_MATH_FUNCTIONS
LOCALE double CosFunction(void *);
LOCALE double SinFunction(void *);
LOCALE double TanFunction(void *);
@@ -63,7 +75,7 @@
LOCALE double AsechFunction(void *);
LOCALE double AcschFunction(void *);
LOCALE double AcothFunction(void *);
- LOCALE long RoundFunction(void *);
+ LOCALE long long RoundFunction(void *);
LOCALE void ModFunction(void *,DATA_OBJECT_PTR);
LOCALE double ExpFunction(void *);
LOCALE double LogFunction(void *);
@@ -77,7 +89,7 @@
LOCALE double PowFunction(void *);
#endif
-#endif
+#endif /* _H_emathfun */