diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-14 20:00:42 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-14 20:02:51 +0100 |
commit | b673c1a77d0af50ddb57d3b82f56141059150007 (patch) | |
tree | 782a9c4a90ff859d49c02d51bdb7c8872c3503c7 /LibC/stdio.cpp | |
parent | bfef4afa6a47f014c1664010c3b074ec0a1204b0 (diff) | |
download | serenity-b673c1a77d0af50ddb57d3b82f56141059150007.zip |
Build Painter & friends into LibC. Use it in the GUI test app.
Diffstat (limited to 'LibC/stdio.cpp')
-rw-r--r-- | LibC/stdio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibC/stdio.cpp b/LibC/stdio.cpp index 5665d20324..b108896643 100644 --- a/LibC/stdio.cpp +++ b/LibC/stdio.cpp @@ -230,7 +230,7 @@ static void sys_putch(char*&, char ch) syscall(SC_putch, ch); } -int sys_printf(const char* fmt, ...) +int dbgprintf(const char* fmt, ...) { va_list ap; va_start(ap, fmt); |