From 900d62b72e0a43a8eebf870442750d4558e158e9 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Wed, 5 Nov 2025 22:24:31 +0100 Subject: [PATCH] bump version --- dicepwgen.h | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/dicepwgen.h b/dicepwgen.h index f5e1a62..26c5da9 100644 --- a/dicepwgen.h +++ b/dicepwgen.h @@ -20,25 +20,26 @@ */ #ifndef HAVE_DICE_H -#define HAVE_DICE_H +#define HAVE_DICE_H -#include -#include -#include -#include -#include -#include #include +#include +#include +#include +#include +#include +#include +#include "debug.h" #include "dictfile.h" #include "tossing.h" -#include "debug.h" #define STRINGIZE(x) #x #define STRINGIZE_VALUE_OF(x) STRINGIZE(x) -#define VERSION "1.2.0" -#define RLEN 1024 +// #define VERSION "1.3.0" +#define RLEN 1024 +static const char VERSION[] = "1.3.0"; extern int humantoss; extern int verbose; @@ -48,7 +49,7 @@ extern int WMIN; extern int WMAX; int usage(); -int main (int argc, char **argv); +int main(int argc, char **argv); void getwords(char *dictfile, int count); #endif