# HG changeset patch # User Bram Moolenaar # Date 1670516103 -3600 # Node ID 7d22228e4979c5dfb2350d37143d31115fd8033f # Parent e0727afd1e6c8475c80520ab62d4d4d59535253c patch 9.0.1033: tiny build fails because of conflicting typedef Commit: https://github.com/vim/vim/commit/83c43ab319f4c4a9d03c65648b4f0df4298a7f93 Author: Bram Moolenaar Date: Thu Dec 8 16:10:01 2022 +0000 patch 9.0.1033: tiny build fails because of conflicting typedef Problem: Tiny build fails because of conflicting typedef. Solution: Remove one typedef. diff --git a/src/structs.h b/src/structs.h --- 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 --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1033, +/**/ 1032, /**/ 1031,