From 0a73e714ce9d95c5385c1265471a396e9e794aea Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Tue, 14 Jun 2011 20:28:09 +0200 Subject: [PATCH] Correct ssize_t detection --- uv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uv.h b/uv.h index a6ce2a28..ce534809 100644 --- a/uv.h +++ b/uv.h @@ -31,7 +31,7 @@ extern "C" { #include /* int64_t */ #include /* size_t */ -#ifndef ssize_t +#ifndef _SSIZE_T_ typedef intptr_t ssize_t; #endif