Files
mckernel/lib/include/types.h
Tomoki Shirasawa b0096a2740 fix REQ-51
2016-03-26 12:23:51 +09:00

22 lines
400 B
C

/**
* \file types.h
* License details are found in the file LICENSE.
* \brief
* typedef stdint.h like integer types
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
* Copyright (C) 2011 - 2012 Taku Shimosawa
*/
/*
* HISTORY
*/
#ifndef TYPES_H
#define TYPES_H
#define BITS_PER_BYTE 8
#define BITS_PER_LONG (sizeof(long) * BITS_PER_BYTE)
#include <ihk/types.h>
#endif