summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util.h b/src/util.h
index 3d4d33c..a89cd3d 100644
--- a/src/util.h
+++ b/src/util.h
@@ -19,13 +19,13 @@
#include <string>
using namespace std;
-// Log a fatal message, dump a backtrace, and exit.
+/// Log a fatal message and exit.
void Fatal(const char* msg, ...);
-// Log an error message.
+/// Log an error message.
void Error(const char* msg, ...);
-// Canonicalize a path like "foo/../bar.h" into just "bar.h".
+/// Canonicalize a path like "foo/../bar.h" into just "bar.h".
bool CanonicalizePath(string* path, string* err);
#endif // NINJA_UTIL_H_