Changeset 609 for branches/GNU/src/binutils/ld/sysdep.h
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/ld/sysdep.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* sysdep.h -- handle host dependencies for the GNU linker 2 Copyright 1995, 1996, 1997, 1999 Free Software Foundation, Inc.2 Copyright 1995, 1996, 1997, 1999, 2002 Free Software Foundation, Inc. 3 3 4 4 This file is part of GLD, the Gnu Linker. … … 49 49 #endif 50 50 51 /* for PATH_MAX */ 52 #ifdef HAVE_LIMITS_H 53 #include <limits.h> 54 #endif 55 /* for MAXPATHLEN */ 56 #ifdef HAVE_SYS_PARAM_H 57 #include <sys/param.h> 58 #endif 59 #ifdef PATH_MAX 60 # define LD_PATHMAX PATH_MAX 61 #else 62 # ifdef MAXPATHLEN 63 # define LD_PATHMAX MAXPATHLEN 64 # else 65 # define LD_PATHMAX 1024 66 # endif 67 #endif 68 69 #ifdef HAVE_REALPATH 70 # define REALPATH(a,b) realpath (a, b) 71 #else 72 # define REALPATH(a,b) NULL 73 #endif 74 51 75 #ifdef USE_BINARY_FOPEN 52 76 #include "fopen-bin.h" -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.