This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit e2a7656eeed225aeff622fbd6237d63af532a38f Author: makejian <[email protected]> AuthorDate: Wed Aug 13 11:34:03 2025 +0800 crypto/ecc: fix warning in tasing compile typedef uint redefined and uint hash been defined in sys/types.h Signed-off-by: makejian <[email protected]> --- crypto/ecc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/crypto/ecc.c b/crypto/ecc.c index f1a924b7d71..430457b7d6d 100644 --- a/crypto/ecc.c +++ b/crypto/ecc.c @@ -103,8 +103,6 @@ * Private Type Definitions ****************************************************************************/ -typedef unsigned int uint; - #if SUPPORTS_INT128 typedef unsigned __int128 uint128_t; #else
