ref: cbeb8907f1cf1526df24c62cc9166ca51aac32bc
parent: 4ce9616cb0aba86a30097ae04eb679f1956d30ec
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Sat Jan 4 19:42:42 EST 2025
ios_trunc: not for an fd on plan 9 References: https://todo.sr.ht/~ft/femtolisp/37
--- a/ios.c
+++ b/ios.c
@@ -484,7 +484,11 @@
s->size = size;
return 0;
}
+#if defined(__plan9__)
+ return -1;
+#else
return ios_flush(s) == 0 ? ftruncate(s->fd, size) : -1;
+#endif
}
bool