Skip to content

Commit

Permalink
Move version tag to pattern.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
samr7 committed Jul 4, 2012
1 parent ca840bd commit b6ca74f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion keyconv.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
#include "winglue.h"
#endif

#include "pattern.h"
#include "util.h"

const char *version = "0.17";
const char *version = VANITYGEN_VERSION;


static void
Expand Down
2 changes: 1 addition & 1 deletion oclvanitygen.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "util.h"


const char *version = "0.17";
const char *version = VANITYGEN_VERSION;
const int debug = 0;


Expand Down
2 changes: 1 addition & 1 deletion oclvanityminer.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include "util.h"


const char *version = "0.17";
const char *version = VANITYGEN_VERSION;
const int debug = 0;


Expand Down
2 changes: 2 additions & 0 deletions pattern.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
#include <unistd.h>
#endif

#define VANITYGEN_VERSION "0.17"


typedef struct _vg_context_s vg_context_t;

Expand Down
2 changes: 1 addition & 1 deletion vanitygen.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "pattern.h"
#include "util.h"

const char *version = "0.17";
const char *version = VANITYGEN_VERSION;

typedef struct _vg_thread_context_s {
vg_exec_context_t base;
Expand Down

0 comments on commit b6ca74f

Please sign in to comment.