22 lines
400 B
C
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
|