Clean up warnings for round() function declaration.
[iverilog.git] / tgt-null / null.c
blob97e245b89b6b01ff1e00f4b1d3f8541611b165c3
1 /*
2 * Copyright (c) 2000 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: null.c,v 1.7 2002/08/12 01:35:03 steve Exp $"
21 #endif
23 # include "config.h"
26 * This is a null target module. It does nothing.
29 # include "ivl_target.h"
32 int target_design(ivl_design_t des)
34 return 0;
38 * $Log: null.c,v $
39 * Revision 1.7 2002/08/12 01:35:03 steve
40 * conditional ident string using autoconfig.
42 * Revision 1.6 2001/09/30 16:45:10 steve
43 * Fix some Cygwin DLL handling. (Venkat Iyer)
45 * Revision 1.5 2001/07/25 03:10:50 steve
46 * Create a config.h.in file to hold all the config
47 * junk, and support gcc 3.0. (Stephan Boettcher)
49 * Revision 1.4 2001/05/22 02:14:47 steve
50 * Update the mingw build to not require cygwin files.
52 * Revision 1.3 2001/05/20 15:09:40 steve
53 * Mingw32 support (Venkat Iyer)
55 * Revision 1.2 2001/02/07 22:21:59 steve
56 * ivl_target header search path fixes.
58 * Revision 1.1 2000/12/02 04:50:32 steve
59 * Make the null target into a loadable target.