source: Main/trunk/VC6Compat/stdint.h@ 212

Last change on this file since 212 was 212, checked in by Nishi, on Oct 3, 2024 at 2:44:55 AM

compiles on vc6

  • Property svn:keywords set to Id
File size: 297 bytes
Line 
1/* $Id: stdint.h 212 2024-10-02 17:44:55Z nishi $ */
2
3#ifndef __STDINT_H__
4#define __STDINT_H__
5
6typedef unsigned char uint8_t;
7typedef unsigned short uint16_t;
8typedef unsigned int uint32_t;
9typedef signed char int8_t;
10typedef signed short int16_t;
11typedef signed int int32_t;
12typedef int socklen_t;
13
14#define INT32_MAX 0x7fffffff
15
16#endif
Note: See TracBrowser for help on using the repository browser.