]> git.sur5r.net Git - cc65/blobdiff - src/common/check.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / common / check.h
index 5f8b31784be2b34393718efd2f2bc1ce5078e420..3f26be79c85321662a5845f1f7a590e2dd8545db 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                 check.h                                  */
+/*                                  check.h                                  */
 /*                                                                           */
-/*                           Assert like macros                             */
+/*                            Assert like macros                             */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
 
 
 
-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)))