genode/repos/libports/src/lib/libc/internal/types.h

30 lines
577 B
C++

/*
* \brief Common libc-internal types
* \author Norman Feske
* \date 2019-09-16
*/
/*
* Copyright (C) 2019 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _LIBC__INTERNAL__TYPES_H_
#define _LIBC__INTERNAL__TYPES_H_
/* Genode includes */
#include <base/log.h>
#include <util/string.h>
namespace Libc {
using namespace Genode;
typedef Genode::uint64_t uint64_t;
typedef String<64> Binary_name;
}
#endif /* _LIBC__INTERNAL__TYPES_H_ */