1
0
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:
Martine Lenders 2018-02-07 10:35:13 +01:00 committed by GitHub
commit 4cdf0de365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 11 deletions

View File

@ -19,6 +19,9 @@
*/
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <inttypes.h>
#include "shell.h"

View File

@ -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.
*/

View File

@ -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" {