Clean up warnings for round() function declaration.
[iverilog.git] / libveriuser / priv.h
blobc6db543132f641f0a31ce44746936d167414c433
1 #ifndef __priv_H
2 #define __priv_H
3 /*
4 * Copyright (c) 2003 Stephen Williams (steve@icarus.com)
6 * This source code is free software; you can redistribute it
7 * and/or modify it in source code form under the terms of the GNU
8 * General Public License as published by the Free Software
9 * Foundation; either version 2 of the License, or (at your option)
10 * any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
21 #ifdef HAVE_CVS_IDENT
22 #ident "$Id: priv.h,v 1.2 2003/05/18 00:16:35 steve Exp $"
23 #endif
25 # include <stdio.h>
28 * This function implements the acc_ string buffer, by adding the
29 * input string to the buffer, and returning a pointer to the first
30 * character of the new string.
32 extern char* __acc_newstring(const char*txt);
35 * Trace file for loggint ACC and TF calls.
37 FILE* pli_trace;
40 * $Log: priv.h,v $
41 * Revision 1.2 2003/05/18 00:16:35 steve
42 * Add PLI_TRACE tracing of PLI1 modules.
44 * Add tf_isetdelay and friends, and add
45 * callback return values for acc_vcl support.
47 * Revision 1.1 2003/02/17 06:39:47 steve
48 * Add at least minimal implementations for several
49 * acc_ functions. Add support for standard ACC
50 * string handling.
52 * Add the _pli_types.h header file to carry the
53 * IEEE1364-2001 standard PLI type declarations.
56 #endif