mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
9 lines
166 B
C
9 lines
166 B
C
#include "cli_utils.h"
|
|
|
|
// Public declaration from cmd.c
|
|
extern void cmd_window_exit(void);
|
|
|
|
void cli_cmd_exit(char *args) {
|
|
(void)args;
|
|
cmd_window_exit();
|
|
}
|