Changeset 2591 for trunk/src/kmk/glob
- Timestamp:
- Jun 17, 2012, 10:45:31 PM (13 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
- Property svn:ignore
-
old new 13 13 stamp-* 14 14 makebook* 15 15 16 .*gdbinit 17 .gdb_history 18 16 19 *.dep 17 20 *.dvi … … 31 34 *.pg 32 35 *.pgs 36 33 37 README 34 38 README.DOS 35 39 README.W32 40 README.OS2 36 41 aclocal.m4 37 42 autom4te.cache … … 52 57 config.h.W32 53 58 config.h-vms 59 54 60 loadavg 55 61 loadavg.c 56 62 make 63 57 64 .deps 58 65 .dep_segment 66 ID 67 TAGS 68 59 69 _* 60 70 sun4 … … 72 82 sol2 73 83 i486-linux 84 74 85 customs 86 75 87 install-sh 76 88 mkinstalldirs 89 90 .directive.asc
-
- Property svn:ignore
-
trunk/src/kmk/glob
- Property svn:ignore
--- +++
- Property svn:ignore
-
trunk/src/kmk/glob/ChangeLog
r1993 r2591 1 2008-09-28 Juan Manuel Guerrero <juan.guerrero@gmx.de> 2 3 * glob.c (my_realloc) [__DJGPP__]: Don't define, and don't 4 redefine realloc to call it, since the DJGPP's realloc handles 5 NULL pointers correctly. 6 1 7 2007-12-22 Juan Manuel Guerrero <juan.guerrero@gmx.de> (tiny change) 2 8 3 * glob /glob.c [__GNU_LIBRARY__ && __DJGPP__]: Add a realloc9 * glob.c [__GNU_LIBRARY__ && __DJGPP__]: Add a realloc 4 10 declaration that matches the one in the DJGPP libc. 5 11 -
trunk/src/kmk/glob/glob.c
r2001 r2591 183 183 #endif 184 184 185 #if !defined (__GNU_LIBRARY__) && !defined(ELECTRIC_HEAP) && !defined(__APPLE__)/* bird (last two) */185 #if !defined __GNU_LIBRARY__ && !defined __DJGPP__ && !defined ELECTRIC_HEAP && !defined __APPLE__ /* bird (last two) */ 186 186 # ifdef __GNUC__ 187 187 __inline … … 192 192 static void * 193 193 my_realloc (void *p, unsigned int n) 194 # elif defined(__DJGPP__)195 static void *196 my_realloc (void *p, size_t n)197 194 # else 198 195 static char * … … 210 207 # define realloc my_realloc 211 208 # endif /* __SASC */ 212 #endif /* __GNU_LIBRARY__ */209 #endif /* __GNU_LIBRARY__ || __DJGPP__ */ 213 210 214 211 … … 390 387 /* Allocate working buffer large enough for our work. Note that 391 388 we have at least an opening and closing brace. */ 392 size_t firstc; 389 size_t firstc; /* bird: correct type. */ 393 390 char *alt_start; 394 391 const char *p;
Note:
See TracChangeset
for help on using the changeset viewer.