Files
my-os-project2/kernel/syscall/randcrypto.c
2025-10-11 21:54:06 +02:00

9 lines
138 B
C

#include <stdint.h>
#include <stddef.h>
#include "hal/hal.h"
#include "syscall.h"
int32_t SYSCALL0(sys_rand) {
return hal_randnum();
}