mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 05:54:08 +00:00

Fixed build failure due to the commit:905f93c77 by removing the inclusion of non-existent 'stdinit.h' file. Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com> Change-Id: I8e3ca69c016b7a2354c58c4d384a492631c36286
14 lines
254 B
C
14 lines
254 B
C
/*
|
|
* Copyright (c) 2020, The Linux Foundation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef QTI_RNG_H
|
|
#define QTI_RNG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int qti_rng_get_data(uint8_t *out, uint32_t out_len);
|
|
|
|
#endif /* QTI_RNG_H */
|