mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
6a950d6a17
Make host tests compilible.
15 lines
203 B
C
15 lines
203 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <time.h>
|
|
#include <string.h>
|
|
#include <stddef.h>
|
|
|
|
#include "esp_system.h"
|
|
|
|
uint32_t esp_random(void)
|
|
{
|
|
return (uint32_t)rand();
|
|
}
|
|
|