Changeset 2596 in kBuild for vendor/gnumake/current/glob
- Timestamp:
- Jun 19, 2012 10:44:52 PM (12 years ago)
- Location:
- vendor/gnumake/current
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
glob (modified) (1 prop)
-
glob/ChangeLog (modified) (1 diff)
-
glob/glob.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current
- Property svn:ignore deleted
-
vendor/gnumake/current/glob
- Property svn:ignore deleted
-
vendor/gnumake/current/glob/ChangeLog
r1989 r2596 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 -
vendor/gnumake/current/glob/glob.c
r1989 r2596 183 183 #endif 184 184 185 #if ndef __GNU_LIBRARY__185 #if !defined __GNU_LIBRARY__ && !defined __DJGPP__ 186 186 # ifdef __GNUC__ 187 187 __inline … … 191 191 static void * 192 192 my_realloc (void *p, unsigned int n) 193 # elif defined(__DJGPP__)194 static void *195 my_realloc (void *p, size_t n)196 193 # else 197 194 static char * … … 209 206 # define realloc my_realloc 210 207 # endif /* __SASC */ 211 #endif /* __GNU_LIBRARY__ */208 #endif /* __GNU_LIBRARY__ || __DJGPP__ */ 212 209 213 210
Note:
See TracChangeset
for help on using the changeset viewer.

