00001 #include <stdio.h> 00002 #include "mpp_f2c.h" 00003 00004 /* --------------------------------------------------------------------- */ 00005 /* Copyright 2006-2010, NEC Europe Ltd., London, UK. */ 00006 /* All rights reserved. Use is subject to OASIS4 license terms. */ 00007 /* --------------------------------------------------------------------- 00008 00009 //BOP 00010 00011 ! !ROUTINE: mpp_flushstd 00012 00013 !INTERFACE: 00014 */ 00015 void mpp_flushstd() 00016 /* 00017 00018 !FILES USED: 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 }