mirror of
https://github.com/curl/curl.git
synced 2026-08-04 09:30:03 +03:00
curl tool: code moved to tool_*.[ch] files
This commit is contained in:
parent
ca2c326361
commit
49b79b7631
29 changed files with 5107 additions and 4356 deletions
|
|
@ -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
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue