mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-19 23:53:55 +00:00
Move repositories to 'repos/' subdirectory
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
This commit is contained in:
22
repos/demo/src/lib/mini_c/abort.cc
Normal file
22
repos/demo/src/lib/mini_c/abort.cc
Normal file
@ -0,0 +1,22 @@
|
||||
/*
|
||||
* \brief Mini C abort()
|
||||
* \author Christian Helmuth
|
||||
* \date 2008-07-24
|
||||
*/
|
||||
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <base/printf.h>
|
||||
#include <base/sleep.h>
|
||||
|
||||
extern "C" void *abort(void)
|
||||
{
|
||||
PDBG("abort called");
|
||||
Genode::sleep_forever();
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user