Clean up warnings for round() function declaration.
[iverilog.git] / libveriuser / a_fetch_location.c
blob9b5d6229043caacf9733eb5f9f7ec8534a029a90
1 /*
2 * Copyright (c) 2003 Stephen Williams (steve@icarus.com)
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19 #ifdef HAVE_CVS_IDENT
20 #ident "$Id: a_fetch_location.c,v 1.1 2003/02/17 06:39:47 steve Exp $"
21 #endif
23 #include <acc_user.h>
24 #include <vpi_user.h>
26 int acc_fetch_location(p_location loc, handle obj)
28 loc->line_no = 0;
29 loc->filename = "<filename>";
30 return 1;
34 * $Log: a_fetch_location.c,v $
35 * Revision 1.1 2003/02/17 06:39:47 steve
36 * Add at least minimal implementations for several
37 * acc_ functions. Add support for standard ACC
38 * string handling.
40 * Add the _pli_types.h header file to carry the
41 * IEEE1364-2001 standard PLI type declarations.