Reorganized source tree. Started using autotools.
This commit is contained in:
15
src/mmgr/types.hpp
Normal file
15
src/mmgr/types.hpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef MEM_TYPES_H
|
||||
#define MEM_TYPES_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#if defined __i386__
|
||||
typedef uint32_t physaddr_t;
|
||||
#elif defined __amd64__
|
||||
typedef uint64_t physaddr_t;
|
||||
#else
|
||||
typedef uint64_t physaddr_t;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user