misc: Move 'verbose' declaration to lib/print.h
This commit is contained in:
parent
6eafb4fc03
commit
86fc022f11
|
@ -33,7 +33,7 @@ extern struct volume *boot_volume;
|
|||
extern bool stage3_loaded;
|
||||
#endif
|
||||
|
||||
extern bool verbose, quiet, serial, editor_enabled;
|
||||
extern bool quiet, serial, editor_enabled;
|
||||
|
||||
bool parse_resolution(size_t *width, size_t *height, size_t *bpp, const char *buf);
|
||||
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
#define __LIB__PRINT_H__
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
extern bool verbose;
|
||||
|
||||
void print(const char *fmt, ...);
|
||||
void vprint(const char *fmt, va_list args);
|
||||
|
|
Loading…
Reference in New Issue