Use iostream instead of stdio.

This commit is contained in:
steve 2005-09-15 22:54:04 +00:00
parent 19a1ae8d4f
commit 5ec7dde52f
1 changed files with 5 additions and 2 deletions

View File

@ -17,13 +17,13 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: arith.cc,v 1.45 2005/07/06 04:29:25 steve Exp $"
#ident "$Id: arith.cc,v 1.46 2005/09/15 22:54:04 steve Exp $"
#endif
# include "arith.h"
# include "schedule.h"
# include <limits.h>
# include <stdio.h>
# include <iostream>
# include <assert.h>
# include <stdlib.h>
#ifdef HAVE_MALLOC_H
@ -754,6 +754,9 @@ void vvp_arith_sub_real::recv_real(vvp_net_ptr_t ptr, double bit)
/*
* $Log: arith.cc,v $
* Revision 1.46 2005/09/15 22:54:04 steve
* Use iostream instead of stdio.
*
* Revision 1.45 2005/07/06 04:29:25 steve
* Implement real valued signals and arith nodes.
*