1*a9fa9459Szrj /* ==> Do not modify this file!!  It is created automatically
2*a9fa9459Szrj    from flat_bl.m using the gen-c-prog.awk script.  <== */
3*a9fa9459Szrj 
4*a9fa9459Szrj #include <stdio.h>
5*a9fa9459Szrj #include "ansidecl.h"
6*a9fa9459Szrj 
7*a9fa9459Szrj void  flat_blurb (FILE *);
8*a9fa9459Szrj void
flat_blurb(FILE * file)9*a9fa9459Szrj flat_blurb (FILE *file)
10*a9fa9459Szrj {
11*a9fa9459Szrj   fputs ("\n", file);
12*a9fa9459Szrj   fputs (" %         the percentage of the total running time of the\n", file);
13*a9fa9459Szrj   fputs ("time       program used by this function.\n", file);
14*a9fa9459Szrj   fputs ("\n", file);
15*a9fa9459Szrj   fputs ("cumulative a running sum of the number of seconds accounted\n", file);
16*a9fa9459Szrj   fputs (" seconds   for by this function and those listed above it.\n", file);
17*a9fa9459Szrj   fputs ("\n", file);
18*a9fa9459Szrj   fputs (" self      the number of seconds accounted for by this\n", file);
19*a9fa9459Szrj   fputs ("seconds    function alone.  This is the major sort for this\n", file);
20*a9fa9459Szrj   fputs ("           listing.\n", file);
21*a9fa9459Szrj   fputs ("\n", file);
22*a9fa9459Szrj   fputs ("calls      the number of times this function was invoked, if\n", file);
23*a9fa9459Szrj   fputs ("           this function is profiled, else blank.\n", file);
24*a9fa9459Szrj   fputs ("\n", file);
25*a9fa9459Szrj   fputs (" self      the average number of milliseconds spent in this\n", file);
26*a9fa9459Szrj   fputs ("ms/call    function per call, if this function is profiled,\n", file);
27*a9fa9459Szrj   fputs ("	   else blank.\n", file);
28*a9fa9459Szrj   fputs ("\n", file);
29*a9fa9459Szrj   fputs (" total     the average number of milliseconds spent in this\n", file);
30*a9fa9459Szrj   fputs ("ms/call    function and its descendents per call, if this\n", file);
31*a9fa9459Szrj   fputs ("	   function is profiled, else blank.\n", file);
32*a9fa9459Szrj   fputs ("\n", file);
33*a9fa9459Szrj   fputs ("name       the name of the function.  This is the minor sort\n", file);
34*a9fa9459Szrj   fputs ("           for this listing. The index shows the location of\n", file);
35*a9fa9459Szrj   fputs ("	   the function in the gprof listing. If the index is\n", file);
36*a9fa9459Szrj   fputs ("	   in parenthesis it shows where it would appear in\n", file);
37*a9fa9459Szrj   fputs ("	   the gprof listing if it were to be printed.\n", file);
38*a9fa9459Szrj   fputs ("\n", file);
39*a9fa9459Szrj   fputs ("Copyright (C) 2012-2016 Free Software Foundation, Inc.\n", file);
40*a9fa9459Szrj   fputs ("\n", file);
41*a9fa9459Szrj   fputs ("Copying and distribution of this file, with or without modification,\n", file);
42*a9fa9459Szrj   fputs ("are permitted in any medium without royalty provided the copyright\n", file);
43*a9fa9459Szrj   fputs ("notice and this notice are preserved.\n", file);
44*a9fa9459Szrj }
45