summaryrefslogtreecommitdiffstats
path: root/lib/libUPnP/Neptune/Source/System/StdC/NptStdcDebug.cpp
blob: ef07336d6a13c6b0715235a1dfbd05640123a35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
}