Subversion Repositories Tewi

Rev

Rev 212 | Rev 301 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 212 Rev 216
Line 1... Line 1...
1
/* $Id: stdint.h 212 2024-10-02 17:44:55Z nishi $ */
1
/* $Id: stdint.h 216 2024-10-02 19:31:23Z nishi $ */
2
 
2
 
3
#ifndef __STDINT_H__
3
#ifndef __STDINT_H__
4
#define __STDINT_H__
4
#define __STDINT_H__
5
 
5
 
6
typedef unsigned char uint8_t;
6
typedef unsigned char uint8_t;
7
typedef unsigned short uint16_t;
7
typedef unsigned short uint16_t;
8
typedef unsigned int uint32_t;
8
typedef unsigned int uint32_t;
9
typedef signed char int8_t;
9
typedef signed char int8_t;
10
typedef signed short int16_t;
10
typedef signed short int16_t;
11
typedef signed int int32_t;
11
typedef signed int int32_t;
12
typedef int socklen_t;
-
 
13
 
12
 
14
#define INT32_MAX 0x7fffffff
13
#define INT32_MAX 0x7fffffff
15
 
14
 
16
#endif
15
#endif