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.h */
/* check.h */
/* */
/* Assert like macros */
/* Assert like macros */
/* */
/* */
/* */
@@ -48,16 +48,16 @@
extern const char* MsgInternalError; /* "Internal error: " */
extern const char* MsgPrecondition; /* "Precondition violated: " */
extern const char* MsgCheckFailed; /* "Check failed: " */
extern const char* MsgProgramAborted; /* "Program aborted: " */
extern const char* MsgInternalError; /* "Internal error: " */
extern const char* MsgPrecondition; /* "Precondition violated: " */
extern const char* MsgCheckFailed; /* "Check failed: " */
extern const char* MsgProgramAborted; /* "Program aborted: " */
extern void (*CheckFailed) (const char* Msg, const char* Cond,
const char* File, unsigned Line)
attribute ((noreturn));
const char* File, unsigned Line)
attribute ((noreturn));
/* Function pointer that is called from check if the condition code is true. */
@@ -80,7 +80,7 @@ extern void (*CheckFailed) (const char* Msg, const char* Cond,
#define PRECONDITION(c) \
((void) ((c)? 0 : (CheckFailed (MsgPrecondition, #c, __FILE__, __LINE__), 0)))
#define CHECK(c) \
#define CHECK(c) \
((void) ((c)? 0 : (CheckFailed (MsgCheckFailed, #c, __FILE__, __LINE__), 0)))