(wrong string) ée

From: <git_AT_suckless.org>
Date: Fri, 13 May 2016 05:43:55 +0200 (CEST)

commit 970b82a39d48951bf450dda5945bb4ca7562e9f2
Author: Mattias Andrée <maandree_AT_kth.se>
AuthorDate: Fri May 13 05:43:39 2016 +0200
Commit: Mattias Andrée <maandree_AT_kth.se>
CommitDate: Fri May 13 05:43:39 2016 +0200

    Add version constants and constants that can be used to detect changes
    
    Signed-off-by: Mattias Andrée <maandree_AT_kth.se>

diff --git a/zahl.h b/zahl.h
index b224338..2edb23d 100644
--- a/zahl.h
+++ b/zahl.h
_AT_@ -15,6 +15,21 @@
 
 
 
+/* TODO these should be documented*/
+#define ZAHL_VERSION_MAJOR 1L
+#define ZAHL_VERSION_MINOR 1L
+#define ZAHL_VERSION_PATCHLEVEL 0L
+#define ZAHL_VERSION (ZAHL_VERSION_MAJOR * 1000000L + \
+ ZAHL_VERSION_MINOR * 1000L + \
+ ZAHL_VERSION_PATCHLEVEL)
+#define ZAHL_VERSION_STRING "1.1"
+#define ZAHL_INTERNALS_VERSION 1
+#define ZAHL_ZRANDDEV_COUNT 7
+#define ZAHL_ZRANDDIST_COUNT 3
+#define ZAHL_ZERROR_COUNT 6
+
+
+
 #include "zahl/internals.h"
 
 
Received on Fri May 13 2016 - 05:43:55 CEST

This archive was generated by hypermail 2.3.0 : Fri May 13 2016 - 05:48:14 CEST