fatfs: Fix -Wstrict-prototypes + -Wimplicit-function-declaration warnings

This will be required for upcoming gcc and clang versions.

Reference: https://archives.gentoo.org/gentoo-dev/message/dd9f2d3082b8b6f8dfbccb0639e6e240
This commit is contained in:
orbea 2022-10-10 15:24:35 -07:00 committed by Nadia Holmquist Pedersen
parent dd74e936ed
commit b5017caa33
3 changed files with 4 additions and 3 deletions

View File

@ -30,7 +30,7 @@ void ff_disk_open(ff_disk_read_cb readcb, ff_disk_write_cb writecb, LBA_t seccnt
else Status &= ~STA_PROTECT;
}
void ff_disk_close()
void ff_disk_close(void)
{
ReadCb = (void*)0;
WriteCb = (void*)0;

View File

@ -421,7 +421,7 @@ typedef UINT (*ff_disk_read_cb)(BYTE* buff, LBA_t sector, UINT count);
typedef UINT (*ff_disk_write_cb)(BYTE* buff, LBA_t sector, UINT count);
void ff_disk_open(ff_disk_read_cb readcb, ff_disk_write_cb writecb, LBA_t seccnt);
void ff_disk_close();
void ff_disk_close(void);
#ifdef __cplusplus

View File

@ -3,6 +3,7 @@
/* (C)ChaN, 2018 */
/*------------------------------------------------------------------------*/
#define _POSIX_SOURCE
#define _POSIX_THREAD_SAFE_FUNCTIONS
#include <time.h>
@ -103,7 +104,7 @@ void ff_rel_grant (
#endif
DWORD get_fattime()
DWORD get_fattime(void)
{
// TODO: return melonDS time instead of RTC??