Update of /cvsroot/plib/plib/src/util
In directory usw-pr-cvs1:/tmp/cvs-serv12337
Modified Files:
ul.h
Log Message:
Added PLIB version macros
Index: ul.h
===================================================================
RCS file: /cvsroot/plib/plib/src/util/ul.h,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- ul.h 31 Aug 2002 20:49:17 -0000 1.48
+++ ul.h 1 Sep 2002 00:37:48 -0000 1.49
@@ -91,6 +91,18 @@
// or mail me (w_...@rz...)
#include <float.h>
+
+/* PLIB version macros */
+
+#define PLIB_MAJOR_VERSION 1
+#define PLIB_MINOR_VERSION 6
+#define PLIB_TINY_VERSION 0
+
+#define PLIB_VERSION (PLIB_MAJOR_VERSION*100 \
+ +PLIB_MINOR_VERSION*10 \
+ +PLIB_TINY_VERSION)
+
+
/* SGI machines seem to suffer from a lack of FLT_EPSILON so... */
#ifndef FLT_EPSILON
|