Files
mckernel/lib/include/types.h
Balazs Gerofi 0cf89c5682 Linux lockless linked list implementation
Change-Id: I8bd6ee989cecac269b55b3a0ff10cf8543629001
2019-04-09 01:52:49 +00:00

27 lines
515 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
*/
/* types.h COPYRIGHT FUJITSU LIMITED 2015-2016 */
#ifndef TYPES_H
#define TYPES_H
#define BITS_PER_BYTE 8
#define BITS_PER_LONG (sizeof(long) * BITS_PER_BYTE)
#ifndef __ASSEMBLY__
typedef _Bool bool;
#endif // __ASSEMBLY__
#include <ihk/types.h>
#endif