diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-01 16:35:59 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-01 16:35:59 +0200 |
commit | acadbeabe1dafb314ae5fdba0432f313e55bb3a2 (patch) | |
tree | 412107f73050489ba95cac0bb3cdc40ea25d038d /src/structs.h | |
parent | 0588d4f9d2741f35a271400a37fddbdd72d84219 (diff) | |
download | vim-acadbeabe1dafb314ae5fdba0432f313e55bb3a2.zip |
patch 7.4.2140
Problem: Tiny build fails.
Solution: Add dummy typedefs.
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 10 |
1 files changed, 10 insertions, 0 deletions
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 |