mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 04:42:25 +00:00
27 lines
573 B
C
27 lines
573 B
C
/**
|
|
* @file stdint.h
|
|
* @author Freya Murphy <freya@freyacat.org>
|
|
* @author Warren R. Carithers
|
|
*
|
|
* Integer definitions.
|
|
*/
|
|
|
|
#ifndef _STDINT_H
|
|
#define _STDINT_H
|
|
|
|
// standard integer sized types
|
|
typedef char int8_t;
|
|
typedef unsigned char uint8_t;
|
|
typedef short int16_t;
|
|
typedef unsigned short uint16_t;
|
|
typedef int int32_t;
|
|
typedef unsigned int uint32_t;
|
|
typedef long long int int64_t;
|
|
typedef unsigned long long int uint64_t;
|
|
|
|
// other integer types
|
|
typedef unsigned char uchar_t;
|
|
typedef unsigned int uint_t;
|
|
typedef unsigned long int ulong_t;
|
|
|
|
#endif /* stdint.h */
|