Changeset 503 in kBuild for trunk/src/gmake/glob/glob.c
- Timestamp:
- Sep 15, 2006 5:09:38 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/glob/glob.c
r281 r503 1 1 /* Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc. 2 2 3 4 5 6 7 8 9 10 11 12 13 You should have received a copy of the GNU Library General Public 14 License along with this library; see the file COPYING.LIB. If not, 15 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 16 Boston, MA 02111-1307,USA. */3 This library is free software; you can redistribute it and/or 4 modify it under the terms of the GNU Library General Public License as 5 published by the Free Software Foundation; either version 2 of the 6 License, or (at your option) any later version. 7 8 This library is distributed in the hope that it will be useful, 9 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 Library General Public License for more details. 12 13 You should have received a copy of the GNU Library General Public License 14 along with this library; see the file COPYING.LIB. If not, write to the Free 15 Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 16 USA. */ 17 17 18 18 /* AIX requires this to be the first thing in the file. */ … … 189 189 # ifdef WINDOWS32 190 190 static void * 191 my_realloc (void *p, unsigned int n) 191 192 # else 192 193 static char * 193 # endif194 194 my_realloc (p, n) 195 195 char *p; 196 196 unsigned int n; 197 # endif 197 198 { 198 199 /* These casts are the for sake of the broken Ultrix compiler, … … 301 302 static int collated_compare __P ((const __ptr_t, const __ptr_t)); 302 303 303 #ifdef VMS304 /* these compilers like prototypes */305 304 #if !defined _LIBC || !defined NO_GLOB_PATTERN_P 306 int __glob_pattern_p (const char *pattern, int quote); 307 #endif 305 int __glob_pattern_p __P ((const char *pattern, int quote)); 308 306 #endif 309 307
Note:
See TracChangeset
for help on using the changeset viewer.