From d643f923a3f96dff7fa0c67283535058702bc48e Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Wed, 4 Sep 2019 17:35:33 +0200 Subject: [PATCH] mescc: Mes C Libray: Fix off_t. * include/sys/types.h (off_t): Drop unsigned. --- include/sys/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sys/types.h b/include/sys/types.h index 03dd1041..a1b0726c 100644 --- a/include/sys/types.h +++ b/include/sys/types.h @@ -87,7 +87,7 @@ typedef unsigned long uintptr_t; #ifndef __MES_OFF_T #define __MES_OFF_T #undef off_t -typedef unsigned long off_t; +typedef long off_t; #endif #ifndef __MES_OFF64_T