summaryrefslogtreecommitdiff
path: root/src/prcdrpsr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/prcdrpsr.h')
-rw-r--r--src/prcdrpsr.h21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/prcdrpsr.h b/src/prcdrpsr.h
index 3346e86..9b440a5 100644
--- a/src/prcdrpsr.h
+++ b/src/prcdrpsr.h
@@ -1,7 +1,7 @@
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
- /* CLIPS Version 6.24 06/05/06 */
+ /* CLIPS Version 6.30 08/16/14 */
/* */
/* PROCEDURAL FUNCTIONS PARSER HEADER FILE */
/*******************************************************/
@@ -11,14 +11,29 @@
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
-/* Brian L. Donnell */
+/* Brian L. Dantes */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
+/* 6.23: Changed name of variable exp to theExp */
+/* because of Unix compiler warnings of shadowed */
+/* definitions. */
+/* */
/* 6.24: Renamed BOOLEAN macro type to intBool. */
/* */
+/* 6.30: Local variables set with the bind function */
+/* persist until a reset/clear command is issued. */
+/* */
+/* Support for long long integers. */
+/* */
+/* Added const qualifiers to remove C++ */
+/* deprecation warnings. */
+/* */
+/* Fixed linkage issue when BLOAD_ONLY compiler */
+/* flag is set to 1. */
+/* */
/*************************************************************/
#ifndef _H_prcdrpsr
@@ -60,7 +75,7 @@ struct BindInfo
LOCALE struct constraintRecord *FindBindConstraints(void *,struct symbolHashNode *);
#endif
-#endif
+#endif /* _H_prcdrpsr */