2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Integer type definitions used by NOVA syscall bindings
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2010-01-15
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2010-2017 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2011-12-22 15:19:25 +00:00
|
|
|
*/
|
|
|
|
|
2016-01-20 19:52:51 +00:00
|
|
|
#ifndef _INCLUDE__NOVA__STDINT_H_
|
|
|
|
#define _INCLUDE__NOVA__STDINT_H_
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#include <base/fixed_stdint.h>
|
|
|
|
|
|
|
|
namespace Nova {
|
|
|
|
|
2012-06-06 08:19:48 +00:00
|
|
|
typedef unsigned long mword_t;
|
2011-12-22 15:19:25 +00:00
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
typedef Genode::uint16_t uint16_t;
|
|
|
|
typedef Genode::uint32_t uint32_t;
|
|
|
|
typedef Genode::uint64_t uint64_t;
|
|
|
|
}
|
|
|
|
|
2016-01-20 19:52:51 +00:00
|
|
|
#endif /* _INCLUDE__NOVA__STDINT_H_ */
|