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 2f541a2 commit 483e94fCopy full SHA for 483e94f
src/memfile.c
@@ -639,7 +639,8 @@ mf_sync(mfp, flags)
639
# endif
640
/* OpenNT is strictly POSIX (Benzinger) */
641
/* Tandem/Himalaya NSK-OSS doesn't have sync() */
642
-# if defined(__OPENNT) || defined(__TANDEM)
+ /* No sync() on Stratus VOS */
643
+# if defined(__OPENNT) || defined(__TANDEM) || defined(__VOS__)
644
fflush(NULL);
645
# else
646
sync();
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 644,
746
/**/
747
643,
748
0 commit comments