mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-30 20:51:41 +00:00 
			
		
		
		
	 66fb5a29bb
			
		
	
	66fb5a29bb
	
	
	
		
			
			Apply the pre-commit hook whitespace fixes to all files in the repo. (Line endings, blank lines at end of file, trailing whitespace)
		
			
				
	
	
		
			14 lines
		
	
	
		
			202 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			202 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();
 | |
| }
 |