From 83c43ab319f4c4a9d03c65648b4f0df4298a7f93 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 8 Dec 2022 16:10:01 +0000 Subject: [PATCH] patch 9.0.1033: tiny build fails because of conflicting typedef Problem: Tiny build fails because of conflicting typedef. Solution: Remove one typedef. --- src/structs.h | 4 ++-- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/structs.h b/src/structs.h index f7ae16b758..0fb57f46df 100644 --- a/src/structs.h +++ b/src/structs.h @@ -2077,10 +2077,10 @@ typedef struct # endif #else // dummy typedefs for use in function prototypes -typedef struct +struct ufunc_S { int dummy; -} ufunc_T; +}; typedef struct { int dummy; diff --git a/src/version.c b/src/version.c index a209733af7..fa65352086 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1033, /**/ 1032, /**/