brintos

brintos / linux-shallow public Read only

0
0
Text · 342 B · 3cd7f98 Raw
16 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __ASM_GENERIC_ARCHRANDOM_H__3#define __ASM_GENERIC_ARCHRANDOM_H__4 5static inline size_t __must_check arch_get_random_longs(unsigned long *v, size_t max_longs)6{7	return 0;8}9 10static inline size_t __must_check arch_get_random_seed_longs(unsigned long *v, size_t max_longs)11{12	return 0;13}14 15#endif16