Change software version from hardcoded value to getting it from the configuration.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@269 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
arcanum 2003-03-06 19:18:40 +00:00
parent 8e68ced235
commit 1b9666eff4
1 changed files with 2 additions and 1 deletions

3
main.c
View File

@ -52,7 +52,8 @@
#include "term.h"
char * version = "3.1.0";
/* Get VERSION from ac_cfg.h */
char * version = VERSION;
int verbose; /* verbose output */
char * progname;