Changeset 375 in Main for trunk/VC6Compat/stdint.h


Ignore:
Timestamp:
Oct 17, 2024, 7:14:19 PM (4 weeks ago)
Author:
Nishi
Message:

trying

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VC6Compat/stdint.h

    r301 r375  
    44#define __STDINT_H__
    55
     6#ifdef __bsdi__
     7typedef u_int8_t uint8_t;
     8typedef u_int16_t short uint16_t;
     9typedef u_int32_t uint32_t;
     10#else
    611typedef unsigned char uint8_t;
    712typedef unsigned short uint16_t;
     
    1217
    1318#define INT32_MAX 0x7fffffff
     19#endif
    1420
    1521#endif
Note: See TracChangeset for help on using the changeset viewer.