summaryrefslogtreecommitdiffstats
path: root/lib/libUPnP/Neptune/Source/System/StdC/NptStdcDebug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libUPnP/Neptune/Source/System/StdC/NptStdcDebug.cpp')
-rw-r--r--lib/libUPnP/Neptune/Source/System/StdC/NptStdcDebug.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/libUPnP/Neptune/Source/System/StdC/NptStdcDebug.cpp b/lib/libUPnP/Neptune/Source/System/StdC/NptStdcDebug.cpp
new file mode 100644
index 0000000..ef07336
--- /dev/null
+++ b/lib/libUPnP/Neptune/Source/System/StdC/NptStdcDebug.cpp
@@ -0,0 +1,30 @@
+/*****************************************************************
+|
+| File: NptStdcDebug.c
+|
+| Neptune - Debug Support: StdC Implementation
+|
+| (c) 2002-2009 Gilles Boccon-Gibod
+| Author: Gilles Boccon-Gibod (bok@bok.net)
+|
+ ****************************************************************/
+
+/*----------------------------------------------------------------------
+| includes
++---------------------------------------------------------------------*/
+#include <stdarg.h>
+#include <stdio.h>
+
+#include "NptConfig.h"
+#include "NptDefs.h"
+#include "NptTypes.h"
+#include "NptDebug.h"
+
+/*----------------------------------------------------------------------
+| NPT_DebugOuput
++---------------------------------------------------------------------*/
+void
+NPT_DebugOutput(const char* message)
+{
+ printf("%s", message);
+}