00001 #include <stdio.h> 00002 #include "PSMILe_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: psmile_flushstd 00012 00013 !INTERFACE: 00014 */ 00015 void psmile_flushstd() 00016 /* 00017 00018 !FILES USED: 00019 00020 stdio.h 00021 PSMILe_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 R. Redler created 00032 00033 //EOP 00034 00035 ---------------------------------------------------------------------- 00036 $Id: psmile_flushstd.c 2325 2010-04-21 15:00:07Z valcke $ 00037 $Author: valcke $ 00038 ---------------------------------------------------------------------- */ 00039 00040 { 00041 00042 fflush( stdout ); 00043 fflush( stderr ); 00044 }