genode/repos/libports/src/test/libc/main.cc
Norman Feske 051e84c4b4 Move server API concept to base framework
This commit introduces the new `Component` interface in the form of the
headers base/component.h and base/entrypoint.h. The os/server.h API
has become merely a compatibilty wrapper and will eventually be removed.
The same holds true for os/signal_rpc_dispatcher.h. The mechanism has
moved to base/signal.h and is now called 'Signal_handler'.

Since the patch shuffles headers around, please do a 'make clean' in the
build directory.

Issue #1832
2016-04-11 11:51:46 +02:00

41 lines
845 B
C++

/*
* \brief LibC test program used during the libC porting process
* \author Norman Feske
* \date 2008-10-22
*/
/*
* Copyright (C) 2008-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
/*
* Mixing Genode headers and libC to see it they collide...
*/
/* Genode includes */
#include <base/env.h>
/* libC includes */
#include <stdio.h>
#include <stdlib.h>
void *addr = 0;
int main(int argc, char **argv)
{
printf("--- libC test ---\n");
printf("Does printf work?\n");
printf("We can find out by printing a floating-point number: %f. How does that work?\n", 1.2345);
printf("Malloc test\n");
addr = malloc(1234);
printf("Malloc returned addr = %p\n", addr);
printf("--- exit(0) from main ---\n");
exit(0);
}