1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

sys: include: random: fix RANDOM_SEED_DEFAULT defines

This commit is contained in:
Kaspar Schleiser 2017-11-06 12:22:45 +01:00
parent c52fde668b
commit c44f269ba0

View File

@ -32,12 +32,12 @@
extern "C" {
#endif
#ifndef RANDOM_DEFAULT_SEED
#ifndef RANDOM_SEED_DEFAULT
/**
* @brief Seed selected when all tries to collect seeds from a random source
* failed
*/
#define RANDOM_DEFAULT_SEED (1)
#define RANDOM_SEED_DEFAULT (1)
#endif
/**