]> git.sur5r.net Git - cc65/blobdiff - src/common/print.h
Normalized code.
[cc65] / src / common / print.h
index cd5a1d20d49b2033b2fddcbcfcffb593c3198715..d570d3ec675577d90697cebe501fe7dafdf9eba7 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                 print.h                                  */
+/*                                  print.h                                  */
 /*                                                                           */
-/*                             Program output                               */
+/*                              Program output                               */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2001     Ullrich von Bassewitz                                       */
+/* (C) 2001      Ullrich von Bassewitz                                       */
 /*               Wacholderweg 14                                             */
 /*               D-70597 Stuttgart                                           */
 /* EMail:        uz@musoftware.de                                            */
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
-extern unsigned char Verbosity;        /* Verbose operation flag */
+extern unsigned char Verbosity;         /* Verbose operation flag */
 
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
 
 void Print (FILE* F, unsigned V, const char* Format, ...)
-       attribute ((format (printf, 3, 4)));
+        attribute ((format (printf, 3, 4)));
 /* Output according to Verbosity */
 
 
@@ -70,7 +70,3 @@ void Print (FILE* F, unsigned V, const char* Format, ...)
 /* End of print.h */
 
 #endif
-
-
-
-