Go to the source code of this file.
Defines | |
#define | ASSERT(c) |
Functions/Subroutines | |
void | mpp_flushstd (void) |
void mpp_flushstd | ( | void | ) |
Definition at line 15 of file mpp_flushstd.c.
References mpp_mod_oa::stderr(), and mpp_mod_oa::stdout().
Referenced by mpp_mod_oa::mpp_error_basic(), mpp_io_mod_oa::mpp_flush(), mpp_io_mod_oa::mpp_io_exit(), mpp_io_mod_oa::mpp_nullify_axistype_array(), mpp_mod_oa::stderr(), mpp_mod_oa::stdlog(), mpp_mod_oa::stdout(), mpp_io_mod_oa::write_attribute_netcdf(), and mpp_io_mod_oa::write_record_c().
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 } }