1169689Skan/* Darwin host-specific hook definitions.
2169689Skan   Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
3169689Skan
4169689Skan   This file is part of GCC.
5169689Skan
6169689Skan   GCC is free software; you can redistribute it and/or modify it
7169689Skan   under the terms of the GNU General Public License as published
8169689Skan   by the Free Software Foundation; either version 2, or (at your
9169689Skan   option) any later version.
10169689Skan
11169689Skan   GCC is distributed in the hope that it will be useful, but WITHOUT
12169689Skan   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13169689Skan   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
14169689Skan   License for more details.
15169689Skan
16169689Skan   You should have received a copy of the GNU General Public License
17169689Skan   along with GCC; see the file COPYING.  If not, write to the
18169689Skan   Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
19169689Skan   MA 02110-1301, USA.  */
20169689Skan
21169689Skanextern void * darwin_gt_pch_get_address (size_t sz, int fd);
22169689Skanextern int darwin_gt_pch_use_address (void *addr, size_t sz, int fd,
23169689Skan				      size_t off);
24169689Skan
25169689Skan#undef HOST_HOOKS_GT_PCH_GET_ADDRESS
26169689Skan#define HOST_HOOKS_GT_PCH_GET_ADDRESS darwin_gt_pch_get_address
27169689Skan#undef HOST_HOOKS_GT_PCH_USE_ADDRESS
28169689Skan#define HOST_HOOKS_GT_PCH_USE_ADDRESS darwin_gt_pch_use_address
29