#include <stdio.h>
#include "mpp_f2c.h"
Go to the source code of this file.
Functions/Subroutines | |
void | mpp_flushstd () |
void mpp_flushstd | ( | void | ) |
Definition at line 15 of file mpp_flushstd.c.
References mpp_mod_oa::stderr(), and mpp_mod_oa::stdout().
00018 : 00019 00020 stdio.h 00021 mpp_f2c.h 00022 00023 !DESCRIPTION: 00024 00025 C routine to flush Stdout and Stderr 00026 00027 !REVISION HISTORY: 00028 00029 Date Programmer Description 00030 ---------- ---------- ----------- 00031 01.12.03 L. Coquart created 00032 00033 //EOP 00034 00035 ---------------------------------------------------------------------- 00036 $Id: psmile_flushstd.c 922 2006-04-20 14:34:55Z valcke $ 00037 $Author: valcke $ 00038 ---------------------------------------------------------------------- */ 00039 00040 { 00041 00042 fflush( stdout ); 00043 fflush( stderr ); 00044 } }