mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-15 16:05:10 +01:00
d90a6f0429
*updated libntfs-wii to version 2012.1.15 *updated libext2fs to e2fsprogs 1.42 *updated libfat to R4883
30 lines
397 B
C
30 lines
397 B
C
#include "common.h"
|
|
|
|
#ifndef USE_LWP_LOCK
|
|
|
|
#ifndef mutex_t
|
|
typedef int mutex_t;
|
|
#endif
|
|
|
|
void __attribute__ ((weak)) _FAT_lock_init(mutex_t *mutex)
|
|
{
|
|
return;
|
|
}
|
|
|
|
void __attribute__ ((weak)) _FAT_lock_deinit(mutex_t *mutex)
|
|
{
|
|
return;
|
|
}
|
|
|
|
void __attribute__ ((weak)) _FAT_lock(mutex_t *mutex)
|
|
{
|
|
return;
|
|
}
|
|
|
|
void __attribute__ ((weak)) _FAT_unlock(mutex_t *mutex)
|
|
{
|
|
return;
|
|
}
|
|
|
|
#endif // USE_LWP_LOCK
|