comparison deps/Platinum/ThirdParty/Neptune/Source/System/StdC/NptStdcConsole.cpp @ 0:3425707ddbf6

Initial import (hopefully this mercurial stuff works...)
author fraserofthenight
date Mon, 06 Jul 2009 08:06:28 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3425707ddbf6
1 /*****************************************************************
2 |
3 | Neptune - Console Support: StdC Implementation
4 |
5 | (c) 2002-2006 Gilles Boccon-Gibod
6 | Author: Gilles Boccon-Gibod (bok@bok.net)
7 |
8 ****************************************************************/
9
10 /*----------------------------------------------------------------------
11 | includes
12 +---------------------------------------------------------------------*/
13 #include <stdio.h>
14
15 #include "NptConfig.h"
16 #include "NptConsole.h"
17
18 /*----------------------------------------------------------------------
19 | NPT_Console::Output
20 +---------------------------------------------------------------------*/
21 void
22 NPT_Console::Output(const char* message)
23 {
24 printf("%s", message);
25 }