1251881Speter/* Darwin host-specific hook definitions.
2251881Speter   Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
3251881Speter
4251881Speter   This file is part of GCC.
5251881Speter
6251881Speter   GCC is free software; you can redistribute it and/or modify it
7251881Speter   under the terms of the GNU General Public License as published
8251881Speter   by the Free Software Foundation; either version 2, or (at your
9251881Speter   option) any later version.
10251881Speter
11251881Speter   GCC is distributed in the hope that it will be useful, but WITHOUT
12251881Speter   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13251881Speter   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
14251881Speter   License for more details.
15251881Speter
16251881Speter   You should have received a copy of the GNU General Public License
17251881Speter   along with GCC; see the file COPYING.  If not, write to the
18251881Speter   Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
19251881Speter   MA 02110-1301, USA.  */
20251881Speter
21251881Speterextern void * darwin_gt_pch_get_address (size_t sz, int fd);
22251881Speterextern int darwin_gt_pch_use_address (void *addr, size_t sz, int fd,
23251881Speter				      size_t off);
24251881Speter
25251881Speter#undef HOST_HOOKS_GT_PCH_GET_ADDRESS
26251881Speter#define HOST_HOOKS_GT_PCH_GET_ADDRESS darwin_gt_pch_get_address
27251881Speter#undef HOST_HOOKS_GT_PCH_USE_ADDRESS
28251881Speter#define HOST_HOOKS_GT_PCH_USE_ADDRESS darwin_gt_pch_use_address
29251881Speter