Declaration warnings.
This commit is contained in:
parent
8d0cb2aa7f
commit
399b3be499
|
|
@ -17,11 +17,12 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
#ifdef HAVE_CVS_IDENT
|
#ifdef HAVE_CVS_IDENT
|
||||||
#ident "$Id: a_fetch_fullname.c,v 1.3 2003/02/17 06:39:47 steve Exp $"
|
#ident "$Id: a_fetch_fullname.c,v 1.4 2003/03/13 05:07:46 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <vpi_user.h>
|
#include <vpi_user.h>
|
||||||
#include <acc_user.h>
|
#include <acc_user.h>
|
||||||
|
#include "priv.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* acc_fetch_fullname implemented using VPI interface
|
* acc_fetch_fullname implemented using VPI interface
|
||||||
|
|
@ -38,6 +39,9 @@ char* acc_fetch_name(handle object)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: a_fetch_fullname.c,v $
|
* $Log: a_fetch_fullname.c,v $
|
||||||
|
* Revision 1.4 2003/03/13 05:07:46 steve
|
||||||
|
* Declaration warnings.
|
||||||
|
*
|
||||||
* Revision 1.3 2003/02/17 06:39:47 steve
|
* Revision 1.3 2003/02/17 06:39:47 steve
|
||||||
* Add at least minimal implementations for several
|
* Add at least minimal implementations for several
|
||||||
* acc_ functions. Add support for standard ACC
|
* acc_ functions. Add support for standard ACC
|
||||||
|
|
|
||||||
|
|
@ -17,10 +17,11 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
#ifdef HAVE_CVS_IDENT
|
#ifdef HAVE_CVS_IDENT
|
||||||
#ident "$Id: a_fetch_type_str.c,v 1.3 2003/03/13 04:35:09 steve Exp $"
|
#ident "$Id: a_fetch_type_str.c,v 1.4 2003/03/13 05:07:46 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <vpi_user.h>
|
||||||
#include <acc_user.h>
|
#include <acc_user.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -46,6 +47,9 @@ char* acc_fetch_type_str(PLI_INT32 type)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: a_fetch_type_str.c,v $
|
* $Log: a_fetch_type_str.c,v $
|
||||||
|
* Revision 1.4 2003/03/13 05:07:46 steve
|
||||||
|
* Declaration warnings.
|
||||||
|
*
|
||||||
* Revision 1.3 2003/03/13 04:35:09 steve
|
* Revision 1.3 2003/03/13 04:35:09 steve
|
||||||
* Add a bunch of new acc_ and tf_ functions.
|
* Add a bunch of new acc_ and tf_ functions.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
#ifdef HAVE_CVS_IDENT
|
#ifdef HAVE_CVS_IDENT
|
||||||
#ident "$Id: priv.c,v 1.1 2003/02/17 06:39:47 steve Exp $"
|
#ident "$Id: priv.c,v 1.2 2003/03/13 05:07:46 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# include "priv.h"
|
# include "priv.h"
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
static char string_buffer[8192];
|
static char string_buffer[8192];
|
||||||
static unsigned string_fill = 0;
|
static unsigned string_fill = 0;
|
||||||
|
|
||||||
static buffer_reset(void)
|
static void buffer_reset(void)
|
||||||
{
|
{
|
||||||
string_fill = 0;
|
string_fill = 0;
|
||||||
}
|
}
|
||||||
|
|
@ -56,6 +56,9 @@ char* __acc_newstring(const char*txt)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: priv.c,v $
|
* $Log: priv.c,v $
|
||||||
|
* Revision 1.2 2003/03/13 05:07:46 steve
|
||||||
|
* Declaration warnings.
|
||||||
|
*
|
||||||
* Revision 1.1 2003/02/17 06:39:47 steve
|
* Revision 1.1 2003/02/17 06:39:47 steve
|
||||||
* Add at least minimal implementations for several
|
* Add at least minimal implementations for several
|
||||||
* acc_ functions. Add support for standard ACC
|
* acc_ functions. Add support for standard ACC
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
#ifdef HAVE_CVS_IDENT
|
#ifdef HAVE_CVS_IDENT
|
||||||
#ident "$Id: typep.c,v 1.1 2002/12/19 21:37:04 steve Exp $"
|
#ident "$Id: typep.c,v 1.2 2003/03/13 05:07:46 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
@ -27,7 +27,6 @@
|
||||||
PLI_INT32 tf_typep(PLI_INT32 narg)
|
PLI_INT32 tf_typep(PLI_INT32 narg)
|
||||||
{
|
{
|
||||||
vpiHandle sys_h, argv, arg_h = 0;
|
vpiHandle sys_h, argv, arg_h = 0;
|
||||||
s_vpi_value value;
|
|
||||||
int rtn;
|
int rtn;
|
||||||
|
|
||||||
assert(narg > 0);
|
assert(narg > 0);
|
||||||
|
|
@ -73,6 +72,9 @@ PLI_INT32 tf_typep(PLI_INT32 narg)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: typep.c,v $
|
* $Log: typep.c,v $
|
||||||
|
* Revision 1.2 2003/03/13 05:07:46 steve
|
||||||
|
* Declaration warnings.
|
||||||
|
*
|
||||||
* Revision 1.1 2002/12/19 21:37:04 steve
|
* Revision 1.1 2002/12/19 21:37:04 steve
|
||||||
* Add tf_message, tf_get/setworkarea, and
|
* Add tf_message, tf_get/setworkarea, and
|
||||||
* ty_typep functions, along with defines
|
* ty_typep functions, along with defines
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue