浏览代码

On Win32 and Win64, define 32-bit C99 types as ints instead of longs, because

a lot of software (wrongly) assumes that int32_t is the same as int.
tags/v0.99.beta18
Sam Hocevar sam 14 年前
父节点
当前提交
0c2a5dfaf4
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      caca/caca_types.h.in

+ 4
- 4
caca/caca_types.h.in 查看文件

@@ -38,12 +38,12 @@

typedef signed char int8_t;
typedef signed short int16_t;
typedef signed long int int32_t;
typedef signed int int32_t;
typedef signed long long int int64_t;

typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long int uint32_t;
typedef unsigned int uint32_t;
typedef unsigned long long int uint64_t;

typedef int ssize_t;
@@ -55,12 +55,12 @@ typedef unsigned int size_t;

typedef signed char int8_t;
typedef signed short int16_t;
typedef signed long int int32_t;
typedef signed int int32_t;
typedef signed long long int int64_t;

typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long int uint32_t;
typedef unsigned int uint32_t;
typedef unsigned long long int uint64_t;

typedef int ssize_t;


正在加载...
取消
保存