summaryrefslogtreecommitdiffstats
path: root/seek_trunc.c
blob: 06ba1d4654d5130da2643fab5bb45ed498f22c36 (plain)
1
2
3
4
5
6
#include <sys/types.h>
#include <unistd.h>
#include "seek.h"

int seek_trunc(fd,pos) int fd; seek_pos pos;
{ return ftruncate(fd,(off_t) pos); }