genode/repos/base-nova/include/nova/stdint.h

29 lines
655 B
C
Raw Normal View History

2011-12-22 15:19:25 +00:00
/*
* \brief Integer type definitions used by NOVA syscall bindings
* \author Norman Feske
* \date 2010-01-15
*/
/*
* 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
* under the terms of the GNU Affero General Public License version 3.
2011-12-22 15:19:25 +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 {
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;
}
#endif /* _INCLUDE__NOVA__STDINT_H_ */