You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
riscv-pke/util/types.h

24 lines
418 B

#ifndef _TYPES_H_
#define _TYPES_H_
typedef unsigned char uint8;
typedef unsigned short uint16;
typedef unsigned int uint32;
typedef unsigned long long uint64;
typedef signed char int8;
typedef signed short int16;
typedef signed int int32;
typedef signed long long int64;
typedef int bool;
typedef signed long ssize_t;
typedef unsigned long size_t;
#define NULL ((void *)0)
#define TRUE 1
#define FALSE 0
#endif