We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9966b21 commit 607985aCopy full SHA for 607985a
2 files changed
src/libvterm/include/vterm.h
@@ -8,14 +8,17 @@
8
extern "C" {
9
#endif
10
11
-#include <stdint.h>
12
#include <stdlib.h>
13
14
#include "vterm_keycodes.h"
15
16
#define TRUE 1
17
#define FALSE 0
18
+/* from stdint.h */
19
+typedef unsigned char uint8_t;
20
+typedef unsigned int uint32_t;
21
+
22
typedef struct VTerm VTerm;
23
typedef struct VTermState VTermState;
24
typedef struct VTermScreen VTermScreen;
src/version.c
@@ -769,6 +769,8 @@ static char *(features[]) =
769
770
static int included_patches[] =
771
{ /* Add new patch number below this line */
772
+/**/
773
+ 795,
774
/**/
775
794,
776
0 commit comments