mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-02-06 19:32:00 +08:00
9 lines
176 B
C++
9 lines
176 B
C++
#include "libmosquitto_common_mock.hpp"
|
|
|
|
|
|
int mosquitto_getrandom(void *bytes, int count)
|
|
{
|
|
return LibMosquittoCommonMock::get_mock().mosquitto_getrandom(
|
|
bytes, count);
|
|
}
|