diff options
author | Paul Smith <psmith@gnu.org> | 2006-03-10 02:20:45 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2006-03-10 02:20:45 +0000 |
commit | 6d8d9b74d9c50cb07fe952ac0929f618e4280a55 (patch) | |
tree | 2ba40ec88c9a4f3445fbc8f6dc6a3de7760ac604 /glob | |
parent | afc4906acaeb7191e4ec085d7be4ca5b036b821d (diff) | |
download | gunmake-6d8d9b74d9c50cb07fe952ac0929f618e4280a55.tar.gz |
Numerous updates to tests for issues found on Cygwin and Windows.
Revert a fix for $? including non-existent files as it shows a bug
in the Linux kernel build. Give them a release to fix this.
Add some changes from Eli Z. for Windows changes.
Diffstat (limited to 'glob')
-rw-r--r-- | glob/ChangeLog | 5 | ||||
-rw-r--r-- | glob/glob.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/glob/ChangeLog b/glob/ChangeLog index 570c19c..68727be 100644 --- a/glob/ChangeLog +++ b/glob/ChangeLog @@ -1,3 +1,8 @@ +2006-02-24 Eli Zaretskii <eliz@gnu.org> + + * glob.c (my_malloc) [WINDOWS32]: Provide a full ISO C prototype, + to avoid compiler warnings. + 2005-06-25 Paul D. Smith <psmith@gnu.org> * fnmatch.h, glob.h [WINDOWS32]: Fix ifdefs in headers. diff --git a/glob/glob.c b/glob/glob.c index 8deb273..a5e6a19 100644 --- a/glob/glob.c +++ b/glob/glob.c @@ -188,12 +188,13 @@ __inline # ifndef __SASC # ifdef WINDOWS32 static void * +my_realloc (void *p, unsigned int n) # else static char * -# endif my_realloc (p, n) char *p; unsigned int n; +# endif { /* These casts are the for sake of the broken Ultrix compiler, which warns of illegal pointer combinations otherwise. */ |