mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-05 07:30:16 +00:00
10 lines
163 B
C
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);
|
|
}
|