Add time() syscall

This commit is contained in:
2025-10-16 14:15:05 +02:00
parent 48231931bd
commit 702f0ddf87
6 changed files with 41 additions and 11 deletions

9
kernel/syscall/time.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef SYSCALL_TIME_H_
#define SYSCALL_TIME_H_
#include <stdint.h>
#include <stddef.h>
int32_t SYSCALL1(sys_time, timestruct1);
#endif // SYSCALL_TIME_H_