mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-26 23:11:19 +01:00
Merge pull request #8530 from gebart/pr/tests-rng-includes
tests/rng: Clean up includes
This commit is contained in:
commit
4cdf0de365
@ -19,6 +19,9 @@
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "shell.h"
|
||||
|
||||
|
||||
@ -6,8 +6,20 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "test.h"
|
||||
|
||||
#include "fmt.h"
|
||||
#include "random.h"
|
||||
#include "xtimer.h"
|
||||
|
||||
#ifdef MODULE_PERIPH_HWRNG
|
||||
#include "periph/hwrng.h"
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Seed for initializing random module.
|
||||
*/
|
||||
|
||||
@ -9,17 +9,7 @@
|
||||
#ifndef TEST_H
|
||||
#define TEST_H
|
||||
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "fmt.h"
|
||||
#include "random.h"
|
||||
#include "xtimer.h"
|
||||
|
||||
#ifdef MODULE_PERIPH_HWRNG
|
||||
#include "periph/hwrng.h"
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user