diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-03-03 20:00:05 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-03-03 20:00:05 +0900 |
| commit | 53f603f284e8a36a764855f80b0ddaadfee818b8 (patch) | |
| tree | a81eb704747d62b204f207d549f4ac5eb5b91540 /tdecore/kdebug.cpp | |
| parent | 26914d6b97d50cb87a41b4a51a037dfdd4e824ed (diff) | |
| download | tdelibs-drop/custom-vsnprintf.tar.gz tdelibs-drop/custom-vsnprintf.zip | |
vsnprintf/snprintf are part of the c++ standard, so there is no need to keep around custom implementations for themdrop/custom-vsnprintf
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdecore/kdebug.cpp')
| -rw-r--r-- | tdecore/kdebug.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tdecore/kdebug.cpp b/tdecore/kdebug.cpp index 18af9c030..64f59555f 100644 --- a/tdecore/kdebug.cpp +++ b/tdecore/kdebug.cpp @@ -50,9 +50,10 @@ #include <stdlib.h> // abort #include <unistd.h> // getpid #include <stdarg.h> // vararg stuff -#include <ctype.h> // isprint +#include <ctype.h> // isprint #include <syslog.h> #include <errno.h> +#include <cstdio> #include <cstring> #include <tdeconfig.h> #include "kstaticdeleter.h" |
