genode/repos/base-nova/include/nova/stdint.h
Norman Feske 2e701f9afa base: update include guards
This patch cleans up the include guards, assisted by the
tool/fix_include_ifndef script.
2016-03-07 12:34:45 +01:00

29 lines
648 B
C++

/*
* \brief Integer type definitions used by NOVA syscall bindings
* \author Norman Feske
* \date 2010-01-15
*/
/*
* Copyright (C) 2010-2013 Genode Labs GmbH
*
* 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_
#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_ */