1/* Configuration for GCC for hosting on Windows32.
2   using GNU tools and the Windows32 API Library.
3   Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003, 2004 Free Software
4   Foundation, Inc.
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
10Software Foundation; either version 2, or (at your option) any later
11version.
12
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING.  If not, write to the Free
20Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2102110-1301, USA.  */
22
23#define HOST_EXECUTABLE_SUFFIX ".exe"
24
25#undef PATH_SEPARATOR
26#define PATH_SEPARATOR ';'
27
28/* This is the name of the null device on windows.  */
29#define HOST_BIT_BUCKET "nul"
30
31/*  The st_ino field of struct stat is always 0.  */
32#define HOST_LACKS_INODE_NUMBERS
33
34/* MSVCRT does not support the "ll" format specifier for printing
35   "long long" values.  Instead, we use "I64".  */
36#define HOST_LONG_LONG_FORMAT "I64"
37