[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

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