Retro68/gcc/newlib/libc/sys/sh/ftruncate.c
2012-03-27 01:51:53 +02:00

10 lines
163 B
C

#include <_ansi.h>
#include <sys/types.h>
#include "sys/syscall.h"
int
ftruncate (int file, off_t length)
{
return __trap34 (SYS_ftruncate, file, length, 0);
}