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:
19
repos/demo/src/lib/mini_c/memset.cc
Normal file
19
repos/demo/src/lib/mini_c/memset.cc
Normal file
@ -0,0 +1,19 @@
|
||||
/*
|
||||
* \brief Mini C memset()
|
||||
* \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 <util/string.h>
|
||||
|
||||
extern "C" void *memset(void *s, int c, Genode::size_t n)
|
||||
{
|
||||
return Genode::memset(s, c, n);
|
||||
}
|
Reference in New Issue
Block a user