From 9b872706821a682617d592dd67bc11837191e446 Mon Sep 17 00:00:00 2001 From: bernard Date: Tue, 17 Oct 2017 22:27:26 +0800 Subject: [PATCH] [libc] Add intptr_t/uintptr_t in minilibc. --- components/libc/compilers/minilibc/stdint.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/libc/compilers/minilibc/stdint.h b/components/libc/compilers/minilibc/stdint.h index eaafb3d2a5..af7df16846 100644 --- a/components/libc/compilers/minilibc/stdint.h +++ b/components/libc/compilers/minilibc/stdint.h @@ -11,8 +11,8 @@ typedef rt_int32_t int32_t; typedef rt_uint32_t uint32_t; typedef long long int64_t; typedef unsigned long long uint64_t; -typedef signed long intptr_t; -typedef unsigned long uintptr_t; +typedef signed long intptr_t; +typedef unsigned long uintptr_t; /* * 7.18.2 Limits of specified-width integer types. -- GitLab