Skip to content
Snippets Groups Projects
Commit 2f55e9be authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

bugfix in Stdio.File->errno()

Rev: lib/modules/Stdio.pmod:1.25
parent 90f3090b
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,11 @@ class File
#endif
mixed ___id;
int errno()
{
return _fd && ::errno();
}
int open(string file, string mode, void|int bits)
{
_fd=Fd();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment