rt-thread/bsp/x86/applications/mnt.c

18 lines
260 B
C
Raw Normal View History

/*
* 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-08-22 07:03:16 +08:00
INIT_ENV_EXPORT(mnt_init);