Changeset 280 for branches/GNU/src/gmake/dir.c
- Timestamp:
- May 16, 2005, 6:54:02 PM (20 years ago)
- Location:
- branches/GNU/src/gmake
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake
- Property svn:ignore
-
old new 34 34 README.DOS 35 35 README.W32 36 README.OS2 36 37 aclocal.m4 37 38 autom4te.cache
-
- Property svn:ignore
-
branches/GNU/src/gmake/dir.c
r54 r280 124 124 downcase (char *filename) 125 125 { 126 #ifdef _AMIGA 127 static char new_filename[136]; 128 #else 129 static char new_filename[PATH_MAX]; 130 #endif 126 static PATH_VAR (new_filename); 131 127 char *df; 132 128 int i; … … 1142 1138 d = (struct dirent *) buf; 1143 1139 #ifdef __MINGW32__ 1144 # if __MINGW32_ VERSION_MAJOR < 3 || (__MINGW32_VERSION_MAJOR== 3 && \1145 __MINGW32_ VERSION_MINOR== 0)1140 # if __MINGW32_MAJOR_VERSION < 3 || (__MINGW32_MAJOR_VERSION == 3 && \ 1141 __MINGW32_MINOR_VERSION == 0) 1146 1142 d->d_name = xmalloc(len); 1147 1143 # endif … … 1163 1159 1164 1160 static void 1165 ansi_free (void *p)1166 { 1167 1168 1161 ansi_free (void *p) 1162 { 1163 if (p) 1164 free(p); 1169 1165 } 1170 1166
Note:
See TracChangeset
for help on using the changeset viewer.