include stdlib.h for portability.

This commit is contained in:
steve 2001-11-16 04:22:27 +00:00
parent 08f0f5a1f7
commit d8970752b6
3 changed files with 15 additions and 3 deletions

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT)
#ident "$Id: event.cc,v 1.1 2001/11/06 03:07:22 steve Exp $"
#ident "$Id: event.cc,v 1.2 2001/11/16 04:22:27 steve Exp $"
#endif
# include "event.h"
@ -27,6 +27,7 @@
# include <string.h>
# include <assert.h>
# include <stdlib.h>
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
@ -130,6 +131,9 @@ void compile_event(char*label, char*type,
/*
* $Log: event.cc,v $
* Revision 1.2 2001/11/16 04:22:27 steve
* include stdlib.h for portability.
*
* Revision 1.1 2001/11/06 03:07:22 steve
* Code rearrange. (Stephan Boettcher)
*

View File

@ -17,13 +17,14 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT)
#ident "$Id: functor.cc,v 1.33 2001/11/10 18:07:11 steve Exp $"
#ident "$Id: functor.cc,v 1.34 2001/11/16 04:22:27 steve Exp $"
#endif
# include "functor.h"
# include "debug.h"
# include <assert.h>
# include <string.h>
# include <stdlib.h>
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
@ -168,6 +169,9 @@ edge_inputs_functor_s::~edge_inputs_functor_s()
/*
* $Log: functor.cc,v $
* Revision 1.34 2001/11/16 04:22:27 steve
* include stdlib.h for portability.
*
* Revision 1.33 2001/11/10 18:07:11 steve
* Runtime support for functor delays. (Stephan Boettcher)
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT)
#ident "$Id: logic.cc,v 1.2 2001/11/07 03:34:42 steve Exp $"
#ident "$Id: logic.cc,v 1.3 2001/11/16 04:22:27 steve Exp $"
#endif
# include "logic.h"
@ -27,6 +27,7 @@
# include <string.h>
# include <assert.h>
# include <stdlib.h>
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
@ -136,6 +137,9 @@ void compile_functor(char*label, char*type, unsigned argc, struct symb_s*argv)
/*
* $Log: logic.cc,v $
* Revision 1.3 2001/11/16 04:22:27 steve
* include stdlib.h for portability.
*
* Revision 1.2 2001/11/07 03:34:42 steve
* Use functor pointers where vvp_ipoint_t is unneeded.
*