195908Sdes/* Darwin host-specific hook definitions.
2115619Sdes   Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
3228690Sdes
495908Sdes   This file is part of GCC.
595908Sdes
695908Sdes   GCC is free software; you can redistribute it and/or modify it
799158Sdes   under the terms of the GNU General Public License as published
899158Sdes   by the Free Software Foundation; either version 2, or (at your
999158Sdes   option) any later version.
1095908Sdes
1195908Sdes   GCC is distributed in the hope that it will be useful, but WITHOUT
1295908Sdes   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
1395908Sdes   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
1495908Sdes   License for more details.
1595908Sdes
1695908Sdes   You should have received a copy of the GNU General Public License
1795908Sdes   along with GCC; see the file COPYING.  If not, write to the
1895908Sdes   Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
1995908Sdes   MA 02110-1301, USA.  */
2095908Sdes
2195908Sdesextern void * darwin_gt_pch_get_address (size_t sz, int fd);
2295908Sdesextern int darwin_gt_pch_use_address (void *addr, size_t sz, int fd,
2395908Sdes				      size_t off);
2495908Sdes
2595908Sdes#undef HOST_HOOKS_GT_PCH_GET_ADDRESS
2695908Sdes#define HOST_HOOKS_GT_PCH_GET_ADDRESS darwin_gt_pch_get_address
2795908Sdes#undef HOST_HOOKS_GT_PCH_USE_ADDRESS
2895908Sdes#define HOST_HOOKS_GT_PCH_USE_ADDRESS darwin_gt_pch_use_address
2995908Sdes