Correct ssize_t detection

This commit is contained in:
Bert Belder 2011-06-14 20:28:09 +02:00
parent 2ec77b363b
commit 0a73e714ce

2
uv.h
View File

@ -31,7 +31,7 @@ extern "C" {
#include <stdint.h> /* int64_t */
#include <sys/types.h> /* size_t */
#ifndef ssize_t
#ifndef _SSIZE_T_
typedef intptr_t ssize_t;
#endif