set errno for file too big

This commit is contained in:
Dave Murphy 2014-12-21 03:13:15 +00:00
parent edf2c1c139
commit a58f2def09

View File

@ -253,6 +253,8 @@ sdmc_open(struct _reent *r,
r->_errno = rc;
if(rc == 0x82044BE)
r->_errno = EEXIST;
if(rc == 0x86044D2)
r->_errno = ENOSPC;
return -1;
}
}