1 /* sysdep.h -- handle host dependencies for the GNU linker
2 Copyright 1995, 1996, 1997, 1999, 2002, 2003
3 Free Software Foundation, Inc.
5 This file is part of GLD, the Gnu Linker.
7 GLD is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GLD is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GLD; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
28 #include <sys/types.h>
37 extern char *strchr ();
38 extern char *strrchr ();
55 #ifdef HAVE_SYS_PARAM_H
56 #include <sys/param.h>
59 # define LD_PATHMAX PATH_MAX
62 # define LD_PATHMAX MAXPATHLEN
64 # define LD_PATHMAX 1024
69 # define REALPATH(a,b) realpath (a, b)
71 # define REALPATH(a,b) NULL
74 #ifdef USE_BINARY_FOPEN
75 #include "fopen-bin.h"
77 #include "fopen-same.h"
80 #ifdef NEED_DECLARATION_STRSTR
81 extern char *strstr ();
84 #ifdef NEED_DECLARATION_FREE
88 #ifdef NEED_DECLARATION_GETENV
89 extern char *getenv ();
92 #ifdef NEED_DECLARATION_ENVIRON
93 extern char **environ
;
96 #endif /* ! defined (LD_SYSDEP_H) */