mirror of
https://github.com/rdolbeau/VexRiscvBPluginGenerator.git
synced 2025-04-18 18:44:42 -04:00
14 lines
201 B
C
14 lines
201 B
C
#ifndef kernelrandombytes_h
|
|
#define kernelrandombytes_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void kernelrandombytes(unsigned char *,unsigned long long);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|