Add the ability to customize the bazel client's exit code used when the bazel server exits abruptly.
--
MOS_MIGRATED_REVID=111641619
diff --git a/src/main/cpp/blaze_util.h b/src/main/cpp/blaze_util.h
index 67e1b32..5cf8182 100644
--- a/src/main/cpp/blaze_util.h
+++ b/src/main/cpp/blaze_util.h
@@ -55,6 +55,10 @@
// Returns false on failure, sets errno.
bool WriteFile(const string &content, const string &filename);
+// Deletes the file 'filename'.
+// Returns false on failure, sets errno.
+bool DeleteFile(const string &filename);
+
// Returns true iff the current terminal can support color and cursor movement.
bool IsStandardTerminal();