[AArch64] Set errno in ftruncate() and truncate().

This commit is contained in:
Marcus Shawcroft 2013-11-21 15:53:52 +00:00
parent eee6552c95
commit 37d3b04f88
3 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2013-11-21 Marcus Shawcroft <marcus.shawcroft@arm.com>
* aarch64/ftruncate.c: Include errno.h.
(ftruncate) Set errno.
* aarch64/truncate.c: Include errno.h.
(truncate) Set errno.
2013-11-20 Marcus Shawcroft <marcus.shawcroft@arm.com>
* arm/ftruncate.c: Include errno.h.

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
ftruncate (int file, off_t length)
{
errno = ENOSYS;
return -1;
}

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;
}