misc: Move 'verbose' declaration to lib/print.h

This commit is contained in:
mintsuki 2022-07-18 21:14:21 +02:00
parent 6eafb4fc03
commit 86fc022f11
2 changed files with 4 additions and 1 deletions

View File

@ -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);

View File

@ -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);