1 /*
2  * Copyright (c) 2003-2014 Stephen Williams (steve@icarus.com)
3  *
4  *    This source code is free software; you can redistribute it
5  *    and/or modify it in source code form under the terms of the GNU
6  *    General Public License as published by the Free Software
7  *    Foundation; either version 2 of the License, or (at your option)
8  *    any later version.
9  *
10  *    This program is distributed in the hope that it will be useful,
11  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *    GNU General Public License for more details.
14  *
15  *    You should have received a copy of the GNU General Public License
16  *    along with this program; if not, write to the Free Software
17  *    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19 
20 # include  <assert.h>
21 # include  <ctype.h>
22 # include  <veriuser.h>
23 # include  <vpi_user.h>
24 # include  "priv.h"
25 
tf_exprinfo(PLI_INT32 a,struct t_tfexprinfo * ip)26 struct t_tfexprinfo* tf_exprinfo(PLI_INT32 a, struct t_tfexprinfo*ip)
27 {
28       (void)a; /* Parameter is not used. */
29       (void)ip; /* Parameter is not used. */
30       if (pli_trace) {
31 	    fprintf(pli_trace, "tf_exprinfo: enter.\n");
32 	    fflush(pli_trace);
33       }
34 
35       fprintf(stderr, "tf_exprinfo: XXXX not implemented. XXXX\n");
36 
37       if (pli_trace) {
38 	    fprintf(pli_trace, "tf_exprinfo: return.\n");
39 	    fflush(pli_trace);
40       }
41       return 0;
42 }
43