fixlib.h (verbose_level, [...]): Mark extern.
2013-01-14 Richard Biener <rguenther@suse.de> * fixlib.h (verbose_level, fixinc_mode): Mark extern. From-SVN: r195142
This commit is contained in:
parent
3ffc195810
commit
bd0ca6ba9f
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2013-01-14 Richard Biener <rguenther@suse.de>
|
||||||
|
|
||||||
|
* fixlib.h (verbose_level, fixinc_mode): Mark extern.
|
||||||
|
|
||||||
2012-10-29 Bruce Korb <bkorb@gnu.org>
|
2012-10-29 Bruce Korb <bkorb@gnu.org>
|
||||||
|
|
||||||
* README: testing wrap and replacement fixes is pointless.
|
* README: testing wrap and replacement fixes is pointless.
|
||||||
|
|
|
@ -223,7 +223,7 @@ typedef enum {
|
||||||
VERB_EVERYTHING
|
VERB_EVERYTHING
|
||||||
} te_verbose;
|
} te_verbose;
|
||||||
|
|
||||||
te_verbose verbose_level;
|
extern te_verbose verbose_level;
|
||||||
|
|
||||||
#define VLEVEL(l) ((unsigned int) verbose_level >= (unsigned int) l)
|
#define VLEVEL(l) ((unsigned int) verbose_level >= (unsigned int) l)
|
||||||
#define NOT_SILENT VLEVEL(VERB_FIXES)
|
#define NOT_SILENT VLEVEL(VERB_FIXES)
|
||||||
|
@ -233,7 +233,7 @@ typedef enum {
|
||||||
TESTING_ON = 1
|
TESTING_ON = 1
|
||||||
} fixinc_mode_t;
|
} fixinc_mode_t;
|
||||||
|
|
||||||
fixinc_mode_t fixinc_mode;
|
extern fixinc_mode_t fixinc_mode;
|
||||||
|
|
||||||
#ifdef HAVE_MMAP_FILE
|
#ifdef HAVE_MMAP_FILE
|
||||||
#define UNLOAD_DATA() do { if (curr_data_mapped) { \
|
#define UNLOAD_DATA() do { if (curr_data_mapped) { \
|
||||||
|
|
Loading…
Add table
Reference in a new issue