Implement skeleton for exit command w/ S.

This commit is contained in:
EDiasAlberto
2024-11-03 22:36:22 +00:00
parent fa6dac2108
commit c0f85a6bcc

View File

@@ -14,6 +14,7 @@ typedef uintptr_t syscall_function (uintptr_t, uintptr_t, uintptr_t);
/* System Call Functions */
static void halt (void);
static void exit (int status);
void
syscall_init (void)
@@ -33,3 +34,9 @@ halt (void)
{
shutdown_power_off ();
}
static void
exit (int status)
{
//TODO
}