[ARM] set errno in ftruncate and truncate stubs.

This commit is contained in:
Marcus Shawcroft
2013-11-21 15:49:05 +00:00
parent 3c7451d8de
commit eee6552c95
3 changed files with 11 additions and 0 deletions

View File

@ -23,10 +23,12 @@
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
#include <errno.h>
#include <sys/types.h>
int
truncate (const char *path, off_t length)
{
errno = ENOSYS;
return -1;
}