Remove unused _intptr_t and _uintptr_t

This commit is contained in:
YAMAMOTO Takashi 2020-11-22 15:40:35 +09:00 committed by Xiang Xiao
parent 670254dffd
commit c3ff79a87c
2 changed files with 0 additions and 10 deletions

View File

@ -76,11 +76,6 @@ typedef signed long long _int64_t;
typedef unsigned long long _uint64_t;
#define __INT64_DEFINED
/* A pointer is 4 bytes */
typedef signed int _intptr_t;
typedef unsigned int _uintptr_t;
/* This is the size of the interrupt state save returned by
* up_irq_save()
*/

View File

@ -65,11 +65,6 @@ typedef unsigned long _uint64_t;
typedef _int64_t _intmax_t;
typedef _uint64_t _uintmax_t;
/* A pointer is 8 bytes */
typedef signed long long _intptr_t;
typedef unsigned long long _uintptr_t;
#if defined(__SIZE_TYPE__)
/* If __SIZE_TYPE__ is defined we define ssize_t based on size_t.
* We simply change "unsigned" to "signed" for this single definition