mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
WL#5486: Remove code for unsupported platforms
Remove MS-DOS specific code.
This commit is contained in:
@ -16,10 +16,15 @@
|
||||
#include "mysys_priv.h"
|
||||
#include <m_string.h>
|
||||
|
||||
/* convert filename to unix style filename */
|
||||
/* If MSDOS converts '\' to '/' */
|
||||
/**
|
||||
Convert filename to unix style filename.
|
||||
|
||||
void to_unix_path(char * to __attribute__((unused)))
|
||||
@remark On Windows, converts '\' to '/'.
|
||||
|
||||
@param to A pathname.
|
||||
*/
|
||||
|
||||
void to_unix_path(char *to __attribute__((unused)))
|
||||
{
|
||||
#if FN_LIBCHAR != '/'
|
||||
{
|
||||
|
Reference in New Issue
Block a user