Subversion Repositories Tewi

Rev

Rev 212 | Rev 375 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/* $Id: stdint.h 216 2024-10-02 19:31:23Z nishi $ */

#ifndef __STDINT_H__
#define __STDINT_H__

typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed int int32_t;

#define INT32_MAX 0x7fffffff

#endif