summaryrefslogtreecommitdiff
path: root/utils/verbose.h
blob: 73476383b0b98ef8e4b7bdd14de6ee95f021410a (plain)
1
2
3
4
5
6
7
8
#ifndef _VERBOSE_H_
#define _VERBOSE_H_

extern bool SILENT;

inline void SetSilent(bool s) { SILENT = s; }

#endif