patch 8.0.0934: change to struts.h missing in patch

Problem:    Change to struts.h missing in patch.
Solution:   Include adding ttyinfo_T.
diff --git a/src/structs.h b/src/structs.h
index 91326f6..40dfd95 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1455,6 +1455,14 @@
     dict_T	*pt_dict;	/* dict for "self" */
 };
 
+/* Information returned by get_tty_info(). */
+typedef struct {
+    int backspace;	/* what the Backspace key produces */
+    int enter;		/* what the Enter key produces */
+    int interrupt;	/* interrupt character */
+    int nl_does_cr;	/* TRUE when a NL is expanded to CR-NL on output */
+} ttyinfo_T;
+
 /* Status of a job.  Order matters! */
 typedef enum
 {