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

29 lines
648 B
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Integer type definitions used by NOVA syscall bindings
* \author Norman Feske
* \date 2010-01-15
*/
/*
2013-01-10 21:44:47 +01:00
* Copyright (C) 2010-2013 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _INCLUDE__NOVA__STDINT_H_
#define _INCLUDE__NOVA__STDINT_H_
2011-12-22 16:19:25 +01:00
#include <base/fixed_stdint.h>
namespace Nova {
typedef unsigned long mword_t;
2011-12-22 16:19:25 +01: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_ */