summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/stdio.cpp
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-11-23 01:07:30 +0100
committerAndreas Kling <kling@serenityos.org>2021-11-24 22:56:39 +0100
commit33079c8ab91fdd63a07f0da8d598ce5bbbab787f (patch)
tree9fa4e2e78faaf891276ea5035373de126c53a7d7 /Userland/Libraries/LibC/stdio.cpp
parentf53bc19b8a47cb014faefa30926eb1f880ad6cc6 (diff)
downloadserenity-33079c8ab91fdd63a07f0da8d598ce5bbbab787f.zip
Kernel+UE+LibC: Remove unused dbgputch syscall
Everything uses the dbgputstr syscall anyway, so there is no need to keep supporting it.
Diffstat (limited to 'Userland/Libraries/LibC/stdio.cpp')
-rw-r--r--Userland/Libraries/LibC/stdio.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Libraries/LibC/stdio.cpp b/Userland/Libraries/LibC/stdio.cpp
index 8bc739effd..ac66b256e0 100644
--- a/Userland/Libraries/LibC/stdio.cpp
+++ b/Userland/Libraries/LibC/stdio.cpp
@@ -1149,11 +1149,6 @@ int rename(const char* oldpath, const char* newpath)
__RETURN_WITH_ERRNO(rc, rc, -1);
}
-void dbgputch(char ch)
-{
- syscall(SC_dbgputch, ch);
-}
-
void dbgputstr(const char* characters, size_t length)
{
syscall(SC_dbgputstr, characters, length);