zephyr/include/zephyr/random/rand32.h
Flavio Ceolin e7bd10ae71 random: Rename random header
rand32.h does not make much sense, since the random subsystem
provides more APIs than just getting a random 32 bits value.

Rename it to random.h and get consistently with other
subsystems.

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
2023-10-10 14:23:50 +03:00

16 lines
396 B
C

/*
* Copyright (c) 2013-2014 Wind River Systems, Inc.
* Copyright (c) 2023 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_RANDOM_RAND32_H_
#define ZEPHYR_INCLUDE_RANDOM_RAND32_H_
#include <zephyr/random/random.h>
#warning "<zephyr/random/rand32.h> is deprecated, include <zephyr/random/random.h> instead"
#endif /* ZEPHYR_INCLUDE_RANDOM_RAND32_H_ */