From 3098a3cda593abb7d11c947f4e6578d651694965 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Wed, 16 May 2018 21:45:41 -0700 Subject: [PATCH] util: don't define _SSIZE_T_DEFINED Clang complains about it, and it's unnecessary anyway. --- src/util.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util.h b/src/util.h index 98746ba..20e5627 100644 --- a/src/util.h +++ b/src/util.h @@ -7,7 +7,6 @@ #include "internal.h" #ifndef _SSIZE_T_DEFINED -#define _SSIZE_T_DEFINED typedef intptr_t ssize_t; #endif