mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-31 15:29:18 +01:00
27 lines
416 B
C
27 lines
416 B
C
#include <wolfssl/wolfcrypt/wc_port.h>
|
|
|
|
int wc_InitMutex(wolfSSL_Mutex* m)
|
|
{
|
|
(void)m;
|
|
return 0;
|
|
}
|
|
|
|
int wc_FreeMutex(wolfSSL_Mutex *m)
|
|
{
|
|
(void)m;
|
|
return 0;
|
|
}
|
|
|
|
|
|
int wc_LockMutex(wolfSSL_Mutex *m)
|
|
{
|
|
(void)m;
|
|
return 0;
|
|
}
|
|
|
|
|
|
int wc_UnLockMutex(wolfSSL_Mutex *m)
|
|
{
|
|
(void)m;
|
|
return 0;
|
|
} |