瀏覽代碼

Fix the Win32 build: ssize_t was no longer defined.

tags/v0.99.beta18
Sam Hocevar sam 14 年之前
父節點
當前提交
4e3e2d95d0
共有 1 個檔案被更改,包括 8 行新增8 行删除
  1. +8
    -8
      caca/caca_types.h

+ 8
- 8
caca/caca_types.h 查看文件

@@ -51,14 +51,14 @@
typedef unsigned int uint32_t;
typedef unsigned long long int uint64_t;
# endif
# if defined _WIN64
/* Win64, (u)intptr_t and size_t are present */
typedef int ssize_t;
# else
/* Win32, only (u)intptr_t is present */
typedef int ssize_t;
typedef unsigned int size_t;
# endif
# endif
# if defined _WIN64
/* Win64, (u)intptr_t and size_t are present */
typedef int ssize_t;
# else
/* Win32, only (u)intptr_t is present */
typedef int ssize_t;
typedef unsigned int size_t;
# endif
#endif



Loading…
取消
儲存