Removed (pretty inconsistently used) tab chars from source code base.

This commit is contained in:
Oliver Schmidt
2013-05-09 13:56:54 +02:00
parent 44fd1082ae
commit 85885001b1
1773 changed files with 62864 additions and 62868 deletions

View File

@@ -1,8 +1,8 @@
/*****************************************************************************/
/* */
/* check.c */
/* check.c */
/* */
/* Assert like macros */
/* Assert like macros */
/* */
/* */
/* */
@@ -41,38 +41,38 @@
/*****************************************************************************/
/* Data */
/* Data */
/*****************************************************************************/
/* Predefined messages */
const char* MsgInternalError = "Internal error: ";
const char* MsgPrecondition = "Precondition violated: ";
const char* MsgCheckFailed = "Check failed: ";
const char* MsgProgramAborted = "Program aborted: ";
const char* MsgInternalError = "Internal error: ";
const char* MsgPrecondition = "Precondition violated: ";
const char* MsgCheckFailed = "Check failed: ";
const char* MsgProgramAborted = "Program aborted: ";
static void DefaultCheckFailed (const char* msg, const char* cond,
const char* file, unsigned line)
attribute ((noreturn));
const char* file, unsigned line)
attribute ((noreturn));
void (*CheckFailed) (const char* Msg, const char* Cond,
const char* File, unsigned Line) attribute ((noreturn))
= DefaultCheckFailed;
const char* File, unsigned Line) attribute ((noreturn))
= DefaultCheckFailed;
/* Function pointer that is called from check if the condition code is true. */
/*****************************************************************************/
/* Code */
/* Code */
/*****************************************************************************/
static void DefaultCheckFailed (const char* Msg, const char* Cond,
const char* File, unsigned Line)
const char* File, unsigned Line)
{
/* Output a diagnostic and abort */
AbEnd ("%s%s, file `%s', line %u", Msg, Cond, File, Line);