curl tool: code moved to tool_*.[ch] files

This commit is contained in:
Yang Tse 2011-10-05 00:03:20 +02:00
parent ca2c326361
commit 49b79b7631
29 changed files with 5107 additions and 4356 deletions

View file

@ -231,6 +231,19 @@ static char *rename_if_dos_device_name (char *file_name)
return file_name;
}
#if defined(MSDOS) && (defined(__DJGPP__) || defined(__GO32__))
/*
* Disable program default argument globbing. We do it on our own.
*/
char **__crt0_glob_function(char *arg)
{
(void)arg;
return (char**)0;
}
#endif /* MSDOS && (__DJGPP__ || __GO32__) */
#ifdef WIN32
/*