mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
29 lines
655 B
C++
29 lines
655 B
C++
/*
|
|
* \brief Integer type definitions used by NOVA syscall bindings
|
|
* \author Norman Feske
|
|
* \date 2010-01-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2010-2017 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 _INCLUDE__NOVA__STDINT_H_
|
|
#define _INCLUDE__NOVA__STDINT_H_
|
|
|
|
#include <base/fixed_stdint.h>
|
|
|
|
namespace Nova {
|
|
|
|
typedef unsigned long mword_t;
|
|
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_ */
|