Empty -> Unsupported

This commit is contained in:
gingerBill
2025-11-14 11:17:38 +00:00
parent 51536fecf4
commit e4fcebe4bf
17 changed files with 23 additions and 23 deletions

View File

@@ -19,7 +19,7 @@ write_stream_proc :: proc(stream_data: rawptr, mode: io.Stream_Mode, p: []byte,
write(fd, p)
return i64(len(p)), nil
}
return 0, .Empty
return 0, .Unsupported
}
@(private="file")