1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 05:53:49 +01:00

Merge pull request #11327 from kaspar030/random_add_missing_include

sys/random: add missing includes
This commit is contained in:
Dylan Laduranty 2019-04-01 20:25:34 +02:00 committed by GitHub
commit d6cad3c331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,9 +20,12 @@
*/
#include <stdint.h>
#include <assert.h>
#include "log.h"
#include "random.h"
#include "bitarithm.h"
#ifdef MODULE_PUF_SRAM
#include "puf_sram.h"
#endif