1: # include   <stdio.h>
   2: 
   3: /*
   4: **  FLUSH -- flush standard output and error
   5: **
   6: **	Parameters:
   7: **		none
   8: **
   9: **	Return:
  10: **		none
  11: **
  12: **	Requires:
  13: **		fflush()
  14: **
  15: **	Defines:
  16: **		flush()
  17: **
  18: **	Called by:
  19: **		general user
  20: **
  21: **	History:
  22: **		2/27/78 (eric) -- changed to flush only standard output
  23: **			and error.
  24: **		1/4/78 -- written by eric
  25: */
  26: 
  27: flush()
  28: {
  29:     fflush(stdout);
  30:     fflush(stderr);
  31: }
Last modified: 1995-02-04
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1834
Valid CSS Valid XHTML 1.0 Strict