home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / src / binutils.2 / gprof / gen-c-pr.awk < prev    next >
Encoding:
Text File  |  1993-05-30  |  569 b   |  27 lines

  1. NR == 1    {
  2.     FS="\"";
  3.     print "/* ==> Do not modify this file!!  It is created automatically"
  4.     printf "   from %s using the make-c-prog.awk script.  <== */\n\n", FILE
  5.     print "#include <stdio.h>"
  6. }
  7.  
  8.     {
  9.       if (curfun != FUNCTION)
  10.         {
  11.           if (curfun)
  12.         print "}"
  13.           curfun = FUNCTION
  14.           print ""
  15.           print "void";
  16.           printf "%s (file)\n", FUNCTION
  17.           print "     FILE *file;";
  18.           print "{";
  19.         }
  20.       printf "  fputs (\"";
  21.       for (i = 1; i < NF; i++)
  22.         printf "%s\\\"", $i;
  23.       printf "%s\\n\", file);\n", $NF;
  24. }
  25.  
  26. END    { print "}" }
  27.