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 b00fdf6 commit fc7649fCopy full SHA for fc7649f
src/libvterm/src/vterm.c
@@ -130,7 +130,8 @@ static int outbuffer_is_full(VTerm *vt)
130
return vt->outbuffer_cur >= vt->outbuffer_len - 1;
131
}
132
133
-#if _XOPEN_SOURCE >= 500 || _ISOC99_SOURCE || _BSD_SOURCE
+#if (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE >= 500) \
134
+ || defined(_ISOC99_SOURCE) || defined(_BSD_SOURCE)
135
# undef VSNPRINTF
136
# define VSNPRINTF vsnprintf
137
#else
src/version.c
@@ -761,6 +761,8 @@ static char *(features[]) =
761
762
static int included_patches[] =
763
{ /* Add new patch number below this line */
764
+/**/
765
+ 1132,
766
/**/
767
1131,
768
0 commit comments