mirror of
https://github.com/ish-app/ish.git
synced 2025-12-08 17:36:02 +00:00
9 lines
117 B
C
9 lines
117 B
C
#ifndef KERNEL_RANDOM_H
|
|
#define KERNEL_RANDOM_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
int get_random(char *buf, size_t len);
|
|
|
|
#endif
|