summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/log.h b/src/log.h
index 4bbe807..789c0f5 100644
--- a/src/log.h
+++ b/src/log.h
@@ -1,6 +1,6 @@
/*
* LiberTI - TI-like calculator designed for LibreCalc
- * Copyright (C) 2015 Delwink, LLC
+ * Copyright (C) 2015, 2017 Delwink, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
@@ -23,18 +23,18 @@
extern bool debug_mode;
int
-info (const char *fmt, ...);
+info(const char *fmt, ...);
int
-warn (const char *fmt, ...);
+warn(const char *fmt, ...);
int
-error (const char *fmt, ...);
+error(const char *fmt, ...);
int
-critical (const char *fmt, ...);
+critical(const char *fmt, ...);
int
-debug (const char *fmt, ...);
+debug(const char *fmt, ...);
#endif