mescc: Mes C Libray: Fix off_t.

* include/sys/types.h (off_t): Drop unsigned.
This commit is contained in:
Jan Nieuwenhuizen 2019-09-04 17:35:33 +02:00
parent a56918eaa2
commit d643f923a3
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 1 additions and 1 deletions

View File

@ -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