diff options
-rw-r--r-- | src/output.c | 6 | ||||
-rw-r--r-- | src/output.h | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/output.c b/src/output.c index 75225fc..e92f04a 100644 --- a/src/output.c +++ b/src/output.c @@ -23,7 +23,7 @@ #include "output.h" void -debug(const char *fmt, ...) +db_dbg(const char *fmt, ...) { va_list ap; @@ -35,7 +35,7 @@ debug(const char *fmt, ...) } void -warn(const char *fmt, ...) +db_warn(const char *fmt, ...) { va_list ap; @@ -47,7 +47,7 @@ warn(const char *fmt, ...) } void -err(int status, const char *fmt, ...) +db_err(int status, const char *fmt, ...) { va_list ap; diff --git a/src/output.h b/src/output.h index fd3f1e0..59a7c6c 100644 --- a/src/output.h +++ b/src/output.h @@ -16,11 +16,11 @@ * <http://www.gnu.org/licenses/>. */ -#ifndef OUTPUT_H -#define OUTPUT_H +#ifndef DB_OUTPUT_H_ +#define DB_OUTPUT_H_ -void debug(const char *fmt, ...); -void warn(const char *fmt, ...); -void err(int status, const char *fmt, ...); +void db_dbg(const char *fmt, ...); +void db_warn(const char *fmt, ...); +void db_err(int status, const char *fmt, ...); -#endif +#endif /* DB_OUTPUT_H_ */ |