Clean up warnings for round() function declaration.
[iverilog.git] / libveriuser / config.h.in
blobd8fbc6a125b1f73e265e97955bb59151d498e992
1 #ifndef __config_H
2 #define __config_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: config.h.in,v 1.2 2003/08/26 16:26:02 steve Exp $"
23 #endif
25 # define SIZEOF_UNSIGNED_LONG_LONG 0
26 # define SIZEOF_UNSIGNED_LONG 0
27 # define SIZEOF_UNSIGNED 0
29 #if SIZEOF_UNSIGNED >= 8
30 typedef unsigned ivl_u64_t;
31 #else
32 # if SIZEOF_UNSIGNED_LONG >= 8
33 typedef unsigned long ivl_u64_t;
34 # else
35 # if SIZEOF_UNSIGNED_LONG_LONG > SIZEOF_UNSIGNED_LONG
36 typedef unsigned long long ivl_u64_t;
37 # else
38 typedef unsigned long ivl_u64_t;
39 # endif
40 # endif
41 #endif
44 * $Log: config.h.in,v $
45 * Revision 1.2 2003/08/26 16:26:02 steve
46 * ifdef idents correctly.
48 * Revision 1.1 2003/06/04 01:56:20 steve
49 * 1) Adds configure logic to clean up compiler warnings
50 * 2) adds acc_compare_handle, acc_fetch_range, acc_next_scope and
51 * tf_isetrealdelay, acc_handle_scope
52 * 3) makes acc_next reentrant
53 * 4) adds basic vpiWire type support
54 * 5) fills in some acc_object_of_type() and acc_fetch_{full}type()
55 * 6) add vpiLeftRange/RigthRange to signals
58 #endif