aboutsummaryrefslogtreecommitdiffstats
path: root/z29.c
diff options
context:
space:
mode:
Diffstat (limited to 'z29.c')
-rw-r--r--z29.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/z29.c b/z29.c
index 3f63ee5..0d28908 100644
--- a/z29.c
+++ b/z29.c
@@ -1,9 +1,9 @@
/*@z29.c:Symbol Table:Declarations, hash()@***********************************/
/* */
-/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.26) */
+/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.27) */
/* COPYRIGHT (C) 1991, 2002 Jeffrey H. Kingston */
/* */
-/* Jeffrey H. Kingston (jeff@cs.usyd.edu.au) */
+/* Jeffrey H. Kingston (jeff@it.usyd.edu.au) */
/* Basser Department of Computer Science */
/* The University of Sydney 2006 */
/* AUSTRALIA */
@@ -730,12 +730,14 @@ void CheckSymSpread(void)
{ fprintf(stderr, "+");
usum += j;
}
- fprintf(stderr, "\n");
+ fprintf(stderr, "%s", STR_NEWLINE);
}
- fprintf(stderr, "average length counting duplicate names = %.1f\n",
+ fprintf(stderr, "average length counting duplicate names = %.1f",
(float) sum / sym_count);
- fprintf(stderr, "average length not counting duplicate names = %.1f\n",
+ fprintf(stderr, "%s", STR_NEWLINE);
+ fprintf(stderr, "average length not counting duplicate names = %.1f",
(float) usum / sym_count);
+ fprintf(stderr, "%s", STR_NEWLINE);
} /* end CheckSymSpread */