1 /*
2  * Copyright (c) 2002 Michael Ruff (mruff at chiaro.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  <vpi_user.h>
21 # include  <acc_user.h>
22 
acc_product_version(void)23 char *acc_product_version(void)
24 {
25       s_vpi_vlog_info info;
26 
27       if (! vpi_get_vlog_info(&info)) return (char *)0;
28 
29       return info.version;
30 }
31