/************************************************************* * File: lib/fflush.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ #include /************************************************************* * fflush(FILE *fp) flush output buffer * Output in PMON is not buffered, so no flush is necessary */ void fflush(FILE *fp) { }