2021-02-19 23:55:17 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
|
|
|
extern int rt_floppy_init(void);
|
|
|
|
|
|
|
|
int mnt_init(void)
|
|
|
|
{
|
2021-08-22 07:03:16 +08:00
|
|
|
return rt_floppy_init();
|
2021-02-19 23:55:17 +08:00
|
|
|
}
|
2021-08-22 07:03:16 +08:00
|
|
|
INIT_ENV_EXPORT(mnt_init);
|
|
|
|
|