From acadbeabe1dafb314ae5fdba0432f313e55bb3a2 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 1 Aug 2016 16:35:59 +0200 Subject: [PATCH] patch 7.4.2140 Problem: Tiny build fails. Solution: Add dummy typedefs. --- src/structs.h | 10 ++++++++++ src/version.c | 2 ++ 2 files changed, 12 insertions(+) diff --git a/src/structs.h b/src/structs.h index 11f182a77..a8b85f479 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1380,6 +1380,16 @@ typedef struct dictitem_T *fd_di; /* Dictionary item used */ } funcdict_T; +#else +/* dummy typedefs for function prototypes */ +typedef struct +{ + int dummy; +} ufunc_T; +typedef struct +{ + int dummy; +} funcdict_T; #endif struct partial_S diff --git a/src/version.c b/src/version.c index 6f505db11..2778712eb 100644 --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2140, /**/ 2139, /**/ -- 2.50.1