Skip to content
This repository was archived by the owner on May 2, 2025. It is now read-only.

Commit 3883933

Browse files
i forgot about display
1 parent 9b01165 commit 3883933

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

include/sys/display.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#pragma once
2+
3+
#include <sys/syscall.h>
4+
5+
/**
6+
* These functions are just wrappers to assembly syscalls (contained in `<sys/syscall.h>`).
7+
* If you are looking for syscalls implementation, please see the another file.
8+
*/
9+
10+
void clearscreen() {
11+
_clear_screen();
12+
}

0 commit comments

Comments
 (0)