From 94302e2f82dacb82a8a03fe8b7928ad452e8678c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sat, 6 Oct 2007 18:40:32 +0000 Subject: [PATCH] dprintf_no_syslog is needed for openfirmware platform git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22464 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/openfirmware/debug.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/system/boot/platform/openfirmware/debug.c b/src/system/boot/platform/openfirmware/debug.c index 351aa050aa..6dd807ee55 100644 --- a/src/system/boot/platform/openfirmware/debug.c +++ b/src/system/boot/platform/openfirmware/debug.c @@ -39,3 +39,14 @@ dprintf(const char *format, ...) va_end(list); } + +void +dprintf_no_syslog(const char *format, ...) +{ + va_list list; + + va_start(list, format); + vprintf(format, list); + va_end(list); +} +