Fix declaration of acc_fetch_paramtype

This commit is contained in:
Stephen Williams 2014-04-07 09:24:30 -07:00
parent f752007e9c
commit e6b394f825
2 changed files with 2 additions and 1 deletions

View File

@ -228,6 +228,7 @@ extern PLI_INT32 acc_fetch_size(handle obj);
extern PLI_INT32 acc_fetch_type(handle obj);
extern PLI_INT32 acc_fetch_fulltype(handle obj);
extern PLI_INT32 acc_fetch_paramtype(handle obj);
extern PLI_INT32 acc_fetch_range(handle object, int *msb, int *lsb);
extern const char* acc_fetch_type_str(PLI_INT32 type);

View File

@ -44,7 +44,7 @@ const char* acc_fetch_type_str(PLI_INT32 type)
/*
* FIXME: What does this do? How should it be declared in acc_user.h?
*/
PLI_INT32 acc_fetch_paramtype(PLI_INT32 type)
PLI_INT32 acc_fetch_paramtype(handle obj)
{
return 0;
}