mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 06:09:08 +00:00
Kernel+UE+LibC: Remove unused dbgputch syscall
Everything uses the dbgputstr syscall anyway, so there is no need to keep supporting it.
This commit is contained in:
parent
f53bc19b8a
commit
33079c8ab9
Notes:
sideshowbarker
2024-07-18 00:42:37 +09:00
Author: https://github.com/BenWiederhake
Commit: 33079c8ab9
Pull-request: https://github.com/SerenityOS/serenity/pull/11067
9 changed files with 0 additions and 31 deletions
|
@ -75,7 +75,6 @@ int vsprintf(char* buffer, const char* fmt, va_list) __attribute__((format(print
|
|||
int vsnprintf(char* buffer, size_t, const char* fmt, va_list) __attribute__((format(printf, 3, 0)));
|
||||
int fprintf(FILE*, const char* fmt, ...) __attribute__((format(printf, 2, 3)));
|
||||
int printf(const char* fmt, ...) __attribute__((format(printf, 1, 2)));
|
||||
void dbgputch(char);
|
||||
void dbgputstr(const char*, size_t);
|
||||
int sprintf(char* buffer, const char* fmt, ...) __attribute__((format(printf, 2, 3)));
|
||||
int asprintf(char** strp, const char* fmt, ...) __attribute__((format(printf, 2, 3)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue