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
index f7ae16b..0fb57f4 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -2077,10 +2077,10 @@
 # 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 a209733..fa65352 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1033,
+/**/
     1032,
 /**/
     1031,