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: }
Defined functions
flush
defined in line
27; used 11 times